Skip to main content

access_point_policy_status_for_object_lambdas

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

Overview

Nameaccess_point_policy_status_for_object_lambdas
TypeResource
Idaws.s3control.access_point_policy_status_for_object_lambdas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
is_publicboolean

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_access_point_policy_status_for_object_lambdaselectx-amz-account-id, name, regionThis operation is not supported by directory buckets. Returns the status of the resource policy associated with an Object Lambda Access Point.

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

SELECT examples

This operation is not supported by directory buckets. Returns the status of the resource policy associated with an Object Lambda Access Point.

SELECT
is_public
FROM aws.s3control.access_point_policy_status_for_object_lambdas
WHERE `x-amz-account-id` = '{{ x-amz-account-id }}' -- required
AND name = '{{ name }}' -- required
AND region = '{{ region }}' -- required
;