access_points_for_object_lambdas
Creates, updates, deletes, gets or lists an access_points_for_object_lambdas resource.
Overview
| Name | access_points_for_object_lambdas |
| Type | Resource |
| Id | aws.s3control.access_points_for_object_lambdas |
Fields
The following fields are returned by SELECT queries:
- list_access_points_for_object_lambda
| Name | Datatype | Description |
|---|---|---|
alias | string | The alias of the Object Lambda Access Point. |
name | string | The name of the Object Lambda Access Point. |
object_lambda_access_point_arn | string | Specifies the ARN for the Object Lambda Access Point. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_access_points_for_object_lambda | select | x-amz-account-id, region | nextToken, maxResults | This operation is not supported by directory buckets. Returns some or all (up to 1,000) access points associated with the Object Lambda Access Point per call. If there are more access points than what can be returned in one call, the response will include a continuation token that you can use to list the additional access points. The following actions are related to ListAccessPointsForObjectLambda: CreateAccessPointForObjectLambda DeleteAccessPointForObjectLambda GetAccessPointForObjectLambda |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
x-amz-account-id | string | The account ID for the account that owns the specified Object Lambda Access Point. |
maxResults | 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. |
nextToken | 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. |
SELECT examples
- list_access_points_for_object_lambda
This operation is not supported by directory buckets. Returns some or all (up to 1,000) access points associated with the Object Lambda Access Point per call. If there are more access points than what can be returned in one call, the response will include a continuation token that you can use to list the additional access points. The following actions are related to ListAccessPointsForObjectLambda: CreateAccessPointForObjectLambda DeleteAccessPointForObjectLambda GetAccessPointForObjectLambda
SELECT
alias,
name,
object_lambda_access_point_arn
FROM aws.s3control.access_points_for_object_lambdas
WHERE `x-amz-account-id` = '{{ x-amz-account-id }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;