Class: Aws::S3Control::Types::ListAccessGrantsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::ListAccessGrantsResult
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_grants_list ⇒ Array<Types::ListAccessGrantEntry>
A container for a list of grants in an S3 Access Grants instance.
-
#next_token ⇒ String
A pagination token to request the next page of results.
Instance Attribute Details
#access_grants_list ⇒ Array<Types::ListAccessGrantEntry>
A container for a list of grants in an S3 Access Grants instance.
4822 4823 4824 4825 4826 4827 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4822 class ListAccessGrantsResult < Struct.new( :next_token, :access_grants_list) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token to request the next page of results. Pass this
value into a subsequent List Access Grants
request in order to
retrieve the next page of results.
4822 4823 4824 4825 4826 4827 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4822 class ListAccessGrantsResult < Struct.new( :next_token, :access_grants_list) SENSITIVE = [] include Aws::Structure end |