Class: Aws::S3Control::Types::ListAccessPointsForObjectLambdaRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::ListAccessPointsForObjectLambdaRequest
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
When making an API call, you may pass ListAccessPointsForObjectLambdaRequest data as a hash:
{
account_id: "AccountId", # required
next_token: "NonEmptyMaxLength1024String",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The account ID for the account that owns the specified Object Lambda Access Point.
-
#max_results ⇒ Integer
The maximum number of access points that you want to include in the list.
-
#next_token ⇒ String
If the list has more access points than can be returned in one call to this API, this field contains a continuation token that you can provide in subsequent calls to this API to retrieve additional access points.
Instance Attribute Details
#account_id ⇒ String
The account ID for the account that owns the specified Object Lambda Access Point.
3735 3736 3737 3738 3739 3740 3741 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 3735 class ListAccessPointsForObjectLambdaRequest < Struct.new( :account_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of access points that you want to include in the
list. The response may contain fewer access points but will never
contain more. If there are more than this number of access points,
then the response will include a continuation token in the
NextToken
field that you can use to retrieve the next page of
access points.
3735 3736 3737 3738 3739 3740 3741 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 3735 class ListAccessPointsForObjectLambdaRequest < Struct.new( :account_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the list has more access points than can be returned in one call to this API, this field contains a continuation token that you can provide in subsequent calls to this API to retrieve additional access points.
3735 3736 3737 3738 3739 3740 3741 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 3735 class ListAccessPointsForObjectLambdaRequest < Struct.new( :account_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |