File: bucket.rbs

package info (click to toggle)
ruby-aws-sdk-s3 1.170.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,740 kB
  • sloc: ruby: 16,388; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 797 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Aws
  module S3
    class Bucket
      # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#clear!-instance_method
      def clear!: () -> void

      # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#delete!-instance_method
      def delete!: (?max_attempts: ::Integer, ?initial_wait: ::Float) -> void
                 | (?Hash[Symbol, untyped]) -> void

      # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#url-instance_method
      def url: (?virtual_host: boolish, ?secure: boolish) -> String
             | (?Hash[Symbol, untyped]) -> String

      # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#presigned_post-instance_method
      def presigned_post: (Hash[Symbol, untyped]) -> untyped
    end
  end
end