Class: Aws::S3Control::Types::ListAccessPointsForDirectoryBucketsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::ListAccessPointsForDirectoryBucketsRequest
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The Amazon Web Services account ID that owns the access points.
-
#directory_bucket ⇒ String
The name of the directory bucket associated with the access points you want to list.
-
#max_results ⇒ Integer
The maximum number of access points that you would like returned in the
ListAccessPointsForDirectoryBucketsresponse. -
#next_token ⇒ String
If
NextTokenis returned, there are more access points available than requested in themaxResultsvalue.
Instance Attribute Details
#account_id ⇒ String
The Amazon Web Services account ID that owns the access points.
5092 5093 5094 5095 5096 5097 5098 5099 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5092 class ListAccessPointsForDirectoryBucketsRequest < Struct.new( :account_id, :directory_bucket, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#directory_bucket ⇒ String
The name of the directory bucket associated with the access points you want to list.
5092 5093 5094 5095 5096 5097 5098 5099 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5092 class ListAccessPointsForDirectoryBucketsRequest < Struct.new( :account_id, :directory_bucket, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of access points that you would like returned in
the ListAccessPointsForDirectoryBuckets response. If the directory
bucket is associated with more than this number of access points,
the results include the pagination token NextToken. Make another
call using the NextToken to retrieve more results.
5092 5093 5094 5095 5096 5097 5098 5099 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5092 class ListAccessPointsForDirectoryBucketsRequest < Struct.new( :account_id, :directory_bucket, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If NextToken is returned, there are more access points available
than requested in the maxResults value. The value of NextToken
is a unique pagination token for each page. Make the call again
using the returned token to retrieve the next page. Keep all other
arguments unchanged. Each pagination token expires after 24 hours.
5092 5093 5094 5095 5096 5097 5098 5099 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5092 class ListAccessPointsForDirectoryBucketsRequest < Struct.new( :account_id, :directory_bucket, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |