Class: Aws::S3::Types::LocationInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::LocationInfo
- Defined in:
- gems/aws-sdk-s3/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 or Local Zone. For more information about directory buckets, see Working with directory buckets in the Amazon S3 User Guide.
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 Zone ID of
the Availability Zone (AZ) or Local Zone (LZ) where the bucket will
be created. An example AZ ID value is usw2-az1
.
11910 11911 11912 11913 11914 11915 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 11910 class LocationInfo < Struct.new( :type, :name) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of location where the bucket will be created.
11910 11911 11912 11913 11914 11915 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 11910 class LocationInfo < Struct.new( :type, :name) SENSITIVE = [] include Aws::Structure end |