access_point_configuration_for_object_lambdas
Creates, updates, deletes, gets or lists an access_point_configuration_for_object_lambdas resource.
Overview
| Name | access_point_configuration_for_object_lambdas |
| Type | Resource |
| Id | aws.s3control.access_point_configuration_for_object_lambdas |
Fields
The following fields are returned by SELECT queries:
- get_access_point_configuration_for_object_lambda
| Name | Datatype | Description |
|---|---|---|
allowed_features | string | A container for allowed features. Valid inputs are GetObject-Range, GetObject-PartNumber, HeadObject-Range, and HeadObject-PartNumber. |
cloud_watch_metrics_enabled | boolean | A container for whether the CloudWatch metrics configuration is enabled. |
supporting_access_point | string | Standard access point associated with the Object Lambda Access Point. |
transformation_configurations | string | A container for transformation configurations for an Object Lambda Access Point. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_access_point_configuration_for_object_lambda | select | x-amz-account-id, name, region | This 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_lambda | replace | x-amz-account-id, name, region, Configuration | This 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.
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the Object Lambda Access Point. |
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. |
SELECT examples
- get_access_point_configuration_for_object_lambda
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
- put_access_point_configuration_for_object_lambda
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;