field_level_encryption_profile_configs
Creates, updates, deletes, gets or lists a field_level_encryption_profile_configs resource.
Overview
| Name | field_level_encryption_profile_configs |
| Type | Resource |
| Id | aws.cloudfront.field_level_encryption_profile_configs |
Fields
The following fields are returned by SELECT queries:
- get_field_level_encryption_profile_config
| Name | Datatype | Description |
|---|---|---|
caller_reference | string | A unique number that ensures that the request can't be replayed. |
comment | string | An optional comment for the field-level encryption profile. The comment cannot be longer than 128 characters. |
encryption_entities | string | A 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. |
name | string | Profile name for the field-level encryption profile. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_field_level_encryption_profile_config | select | id, region | Get 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.
| Name | Datatype | Description |
|---|---|---|
id | string | Get the ID for the field-level encryption profile configuration information. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_field_level_encryption_profile_config
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
;