File: //usr/share/doc/awscli/examples/cloudfront/get-field-level-encryption-profile-config.rst
**To get a CloudFront field-level encryption profile configuration**
The following example gets metadata about the CloudFront field-level encryption
profile with ID ``PPK0UOSIF5WSV`` , including its ``ETag``::
aws cloudfront get-field-level-encryption-profile-config --id PPK0UOSIF5WSV
Output::
{
"ETag": "E1QQG65FS2L2GC",
"FieldLevelEncryptionProfileConfig": {
"Name": "ExampleFLEProfile",
"CallerReference": "cli-example",
"Comment": "FLE profile for AWS CLI example",
"EncryptionEntities": {
"Quantity": 1,
"Items": [
{
"PublicKeyId": "K2K8NC4HVFE3M0",
"ProviderId": "ExampleFLEProvider",
"FieldPatterns": {
"Quantity": 1,
"Items": [
"ExampleSensitiveField"
]
}
}
]
}
}
}