{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-describe-default-encryption-configuration-response-schema.json",
"title": "DescribeDefaultEncryptionConfigurationResponse",
"description": "DescribeDefaultEncryptionConfigurationResponse schema",
"type": "object",
"properties": {
"encryptionType": {
"allOf": [
{
"$ref": "#/components/schemas/EncryptionType"
},
{
"description": "The type of encryption used for the encryption configuration."
}
]
},
"kmsKeyArn": {
"allOf": [
{
"$ref": "#/components/schemas/ARN"
},
{
"description": "The key ARN of the customer managed key used for KMS encryption if you use KMS_BASED_ENCRYPTION."
}
]
},
"configurationStatus": {
"allOf": [
{
"$ref": "#/components/schemas/ConfigurationStatus"
},
{
"description": "The status of the account configuration. This contains the ConfigurationState. If there's an error, it also contains the ErrorDetails."
}
]
}
},
"required": [
"encryptionType",
"configurationStatus"
]
}