Class: Aws::S3::Types::BucketInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::BucketInfo
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Specifies the information about the bucket that will be created. For more information about directory buckets, see [Directory buckets] in the *Amazon S3 User Guide*.
<note markdown=“1”> This functionality is only supported by directory buckets.
</note>
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_redundancy ⇒ String
The number of Availability Zone that’s used for redundancy for the bucket.
-
#type ⇒ String
The type of bucket.
Instance Attribute Details
#data_redundancy ⇒ String
The number of Availability Zone that’s used for redundancy for the bucket.
405 406 407 408 409 410 |
# File 'lib/aws-sdk-s3/types.rb', line 405 class BucketInfo < Struct.new( :data_redundancy, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of bucket.
405 406 407 408 409 410 |
# File 'lib/aws-sdk-s3/types.rb', line 405 class BucketInfo < Struct.new( :data_redundancy, :type) SENSITIVE = [] include Aws::Structure end |