Class: Aws::S3::Types::Bucket
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Bucket
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
In terms of implementation, a Bucket is a resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_arn ⇒ String
The Amazon Resource Name (ARN) of the S3 bucket.
-
#bucket_region ⇒ String
‘BucketRegion` indicates the Amazon Web Services region where the bucket is located.
-
#creation_date ⇒ Time
Date the bucket was created.
-
#name ⇒ String
The name of the bucket.
Instance Attribute Details
#bucket_arn ⇒ String
The Amazon Resource Name (ARN) of the S3 bucket. ARNs uniquely identify Amazon Web Services resources across all of Amazon Web Services.
<note markdown=“1”> This parameter is only supported for S3 directory buckets. For more information, see [Using tags with directory buckets].
</note>
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
392 393 394 395 396 397 398 399 |
# File 'lib/aws-sdk-s3/types.rb', line 392 class Bucket < Struct.new( :name, :creation_date, :bucket_region, :bucket_arn) SENSITIVE = [] include Aws::Structure end |
#bucket_region ⇒ String
‘BucketRegion` indicates the Amazon Web Services region where the bucket is located. If the request contains at least one valid parameter, it is included in the response.
392 393 394 395 396 397 398 399 |
# File 'lib/aws-sdk-s3/types.rb', line 392 class Bucket < Struct.new( :name, :creation_date, :bucket_region, :bucket_arn) SENSITIVE = [] include Aws::Structure end |
#creation_date ⇒ Time
Date the bucket was created. This date can change when making changes to your bucket, such as editing its bucket policy.
392 393 394 395 396 397 398 399 |
# File 'lib/aws-sdk-s3/types.rb', line 392 class Bucket < Struct.new( :name, :creation_date, :bucket_region, :bucket_arn) SENSITIVE = [] include Aws::Structure end |