Class: Aws::S3Control::Types::ListAccessGrantsLocationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::ListAccessGrantsLocationsRequest
- 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 of the S3 Access Grants instance.
-
#location_scope ⇒ String
The S3 path to the location that you are registering.
-
#max_results ⇒ Integer
The maximum number of access grants that you would like returned in the
List Access Grantsresponse. -
#next_token ⇒ String
A pagination token to request the next page of results.
Instance Attribute Details
#account_id ⇒ String
The Amazon Web Services account ID of the S3 Access Grants instance.
4936 4937 4938 4939 4940 4941 4942 4943 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4936 class ListAccessGrantsLocationsRequest < Struct.new( :account_id, :next_token, :max_results, :location_scope) SENSITIVE = [] include Aws::Structure end |
#location_scope ⇒ String
The S3 path to the location that you are registering. The location
scope can be the default S3 location s3://, the S3 path to a
bucket s3://<bucket>, or the S3 path to a bucket and prefix
s3://<bucket>/<prefix>. A prefix in S3 is a string of characters
at the beginning of an object key name used to organize the objects
that you store in your S3 buckets. For example, object key names
that start with the engineering/ prefix or object key names that
start with the marketing/campaigns/ prefix.
4936 4937 4938 4939 4940 4941 4942 4943 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4936 class ListAccessGrantsLocationsRequest < Struct.new( :account_id, :next_token, :max_results, :location_scope) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of access grants that you would like returned in
the List Access Grants response. If the results include the
pagination token NextToken, make another call using the
NextToken to determine if there are more results.
4936 4937 4938 4939 4940 4941 4942 4943 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4936 class ListAccessGrantsLocationsRequest < Struct.new( :account_id, :next_token, :max_results, :location_scope) 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 Locations request in
order to retrieve the next page of results.
4936 4937 4938 4939 4940 4941 4942 4943 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4936 class ListAccessGrantsLocationsRequest < Struct.new( :account_id, :next_token, :max_results, :location_scope) SENSITIVE = [] include Aws::Structure end |