Class: Aws::S3::Types::ListBucketsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::ListBucketsOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#buckets ⇒ Array<Types::Bucket>
The list of buckets owned by the requester.
-
#continuation_token ⇒ String
‘ContinuationToken` is included in the response when there are more buckets that can be listed with pagination.
-
#owner ⇒ Types::Owner
The owner of the buckets listed.
-
#prefix ⇒ String
If ‘Prefix` was sent with the request, it is included in the response.
Instance Attribute Details
#buckets ⇒ Array<Types::Bucket>
The list of buckets owned by the requester.
10174 10175 10176 10177 10178 10179 10180 10181 |
# File 'lib/aws-sdk-s3/types.rb', line 10174 class ListBucketsOutput < Struct.new( :buckets, :owner, :continuation_token, :prefix) SENSITIVE = [] include Aws::Structure end |
#continuation_token ⇒ String
‘ContinuationToken` is included in the response when there are more buckets that can be listed with pagination. The next `ListBuckets` request to Amazon S3 can be continued with this `ContinuationToken`. `ContinuationToken` is obfuscated and is not a real bucket.
10174 10175 10176 10177 10178 10179 10180 10181 |
# File 'lib/aws-sdk-s3/types.rb', line 10174 class ListBucketsOutput < Struct.new( :buckets, :owner, :continuation_token, :prefix) SENSITIVE = [] include Aws::Structure end |
#owner ⇒ Types::Owner
The owner of the buckets listed.
10174 10175 10176 10177 10178 10179 10180 10181 |
# File 'lib/aws-sdk-s3/types.rb', line 10174 class ListBucketsOutput < Struct.new( :buckets, :owner, :continuation_token, :prefix) SENSITIVE = [] include Aws::Structure end |
#prefix ⇒ String
If ‘Prefix` was sent with the request, it is included in the response.
All bucket names in the response begin with the specified bucket name prefix.
10174 10175 10176 10177 10178 10179 10180 10181 |
# File 'lib/aws-sdk-s3/types.rb', line 10174 class ListBucketsOutput < Struct.new( :buckets, :owner, :continuation_token, :prefix) SENSITIVE = [] include Aws::Structure end |