Skip to main content

field_level_encryption_profile_configs

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

Overview

Namefield_level_encryption_profile_configs
TypeResource
Idaws.cloudfront.field_level_encryption_profile_configs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
caller_referencestringA unique number that ensures that the request can't be replayed.
commentstringAn optional comment for the field-level encryption profile. The comment cannot be longer than 128 characters.
encryption_entitiesstringA complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.
namestringProfile name for the field-level encryption profile.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_field_level_encryption_profile_configselectid, regionGet the field-level encryption profile 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
idstringGet the ID for the field-level encryption profile configuration information.
regionstringAWS region (default: us-east-1)

SELECT examples

Get the field-level encryption profile configuration information.

SELECT
caller_reference,
comment,
encryption_entities,
name
FROM aws.cloudfront.field_level_encryption_profile_configs
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;