Skip to main content

access_points_for_object_lambdas

Creates, updates, deletes, gets or lists an access_points_for_object_lambdas resource.

Overview

Nameaccess_points_for_object_lambdas
TypeResource
Idaws.s3control.access_points_for_object_lambdas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
aliasstringThe alias of the Object Lambda Access Point.
namestringThe name of the Object Lambda Access Point.
object_lambda_access_point_arnstringSpecifies the ARN for the Object Lambda Access Point.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_access_points_for_object_lambdaselectx-amz-account-id, regionnextToken, maxResultsThis 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
x-amz-account-idstringThe account ID for the account that owns the specified Object Lambda Access Point.
maxResultsintegerThe 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.
nextTokenstringIf 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

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 }}'
;