field_level_encryptions
Creates, updates, deletes, gets or lists a field_level_encryptions resource.
Overview
| Name | field_level_encryptions |
| Type | Resource |
| Id | aws.cloudfront.field_level_encryptions |
Fields
The following fields are returned by SELECT queries:
- get_field_level_encryption
| Name | Datatype | Description |
|---|---|---|
field_level_encryption_config | string | A complex data type that includes the profile configurations specified for field-level encryption. |
id | string | The configuration ID for a field-level encryption configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys. |
last_modified_time | string | The last time the field-level encryption configuration was changed. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_field_level_encryption | select | id, region | Get the field-level encryption configuration information. |
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 |
|---|---|---|
id | string | Request the ID for the field-level encryption configuration information. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_field_level_encryption
Get the field-level encryption configuration information.
SELECT
field_level_encryption_config,
id,
last_modified_time
FROM aws.cloudfront.field_level_encryptions
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;