Skip to main content

access_point_configuration_for_object_lambdas

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

Overview

Nameaccess_point_configuration_for_object_lambdas
TypeResource
Idaws.s3control.access_point_configuration_for_object_lambdas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
allowed_featuresstringA container for allowed features. Valid inputs are GetObject-Range, GetObject-PartNumber, HeadObject-Range, and HeadObject-PartNumber.
cloud_watch_metrics_enabledbooleanA container for whether the CloudWatch metrics configuration is enabled.
supporting_access_pointstringStandard access point associated with the Object Lambda Access Point.
transformation_configurationsstringA container for transformation configurations for an Object Lambda Access Point.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_access_point_configuration_for_object_lambdaselectx-amz-account-id, name, regionThis operation is not supported by directory buckets. Returns configuration for an Object Lambda Access Point. The following actions are related to GetAccessPointConfigurationForObjectLambda: PutAccessPointConfigurationForObjectLambda
put_access_point_configuration_for_object_lambdareplacex-amz-account-id, name, region, ConfigurationThis operation is not supported by directory buckets. Replaces configuration for an Object Lambda Access Point. The following actions are related to PutAccessPointConfigurationForObjectLambda: GetAccessPointConfigurationForObjectLambda

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 configuration for an Object Lambda Access Point. The following actions are related to GetAccessPointConfigurationForObjectLambda: PutAccessPointConfigurationForObjectLambda

SELECT
allowed_features,
cloud_watch_metrics_enabled,
supporting_access_point,
transformation_configurations
FROM aws.s3control.access_point_configuration_for_object_lambdas
WHERE `x-amz-account-id` = '{{ x-amz-account-id }}' -- required
AND name = '{{ name }}' -- required
AND region = '{{ region }}' -- required
;

REPLACE examples

This operation is not supported by directory buckets. Replaces configuration for an Object Lambda Access Point. The following actions are related to PutAccessPointConfigurationForObjectLambda: GetAccessPointConfigurationForObjectLambda

REPLACE aws.s3control.access_point_configuration_for_object_lambdas
SET
Configuration = '{{ Configuration }}'
WHERE
`x-amz-account-id` = '{{ x-amz-account-id }}' --required
AND name = '{{ name }}' --required
AND region = '{{ region }}' --required
AND Configuration = '{{ Configuration }}' --required;