Class: Aws::S3::Types::ListDirectoryBucketsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::ListDirectoryBucketsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#continuation_token ⇒ String
‘ContinuationToken` indicates to Amazon S3 that the list is being continued on buckets in this account with a token.
-
#max_directory_buckets ⇒ Integer
Maximum number of buckets to be returned in response.
Instance Attribute Details
#continuation_token ⇒ String
‘ContinuationToken` indicates to Amazon S3 that the list is being continued on buckets in this account with a token. `ContinuationToken` is obfuscated and is not a real bucket name. You can use this `ContinuationToken` for the pagination of the list results.
10061 10062 10063 10064 10065 10066 |
# File 'lib/aws-sdk-s3/types.rb', line 10061 class ListDirectoryBucketsRequest < Struct.new( :continuation_token, :max_directory_buckets) SENSITIVE = [] include Aws::Structure end |
#max_directory_buckets ⇒ Integer
Maximum number of buckets to be returned in response. When the number is more than the count of buckets that are owned by an Amazon Web Services account, return all the buckets in response.
10061 10062 10063 10064 10065 10066 |
# File 'lib/aws-sdk-s3/types.rb', line 10061 class ListDirectoryBucketsRequest < Struct.new( :continuation_token, :max_directory_buckets) SENSITIVE = [] include Aws::Structure end |