Class: Aws::S3::Types::LocationInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::LocationInfo
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Specifies the location where the bucket will be created.
For directory buckets, the location type is Availability Zone. 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
-
#name ⇒ String
The name of the location where the bucket will be created.
-
#type ⇒ String
The type of location where the bucket will be created.
Instance Attribute Details
#name ⇒ String
The name of the location where the bucket will be created.
For directory buckets, the name of the location is the AZ ID of the Availability Zone where the bucket will be created. An example AZ ID value is ‘usw2-az1`.
11284 11285 11286 11287 11288 11289 |
# File 'lib/aws-sdk-s3/types.rb', line 11284 class LocationInfo < Struct.new( :type, :name) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of location where the bucket will be created.
11284 11285 11286 11287 11288 11289 |
# File 'lib/aws-sdk-s3/types.rb', line 11284 class LocationInfo < Struct.new( :type, :name) SENSITIVE = [] include Aws::Structure end |