Skip to main content

field_level_encryptions

Creates, updates, deletes, gets or lists a field_level_encryptions resource.

Overview

Namefield_level_encryptions
TypeResource
Idaws.cloudfront.field_level_encryptions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
field_level_encryption_configstringA complex data type that includes the profile configurations specified for field-level encryption.
idstringThe 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_timestringThe last time the field-level encryption configuration was changed.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_field_level_encryptionselectid, regionGet 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.

NameDatatypeDescription
idstringRequest the ID for the field-level encryption configuration information.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;