interface ConfigurationDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnEncryptionConfigurationPropsMixin.ConfigurationDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnEncryptionConfigurationPropsMixin_ConfigurationDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnEncryptionConfigurationPropsMixin.ConfigurationDetailsProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnEncryptionConfigurationPropsMixin.ConfigurationDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnEncryptionConfigurationPropsMixin » ConfigurationDetailsProperty |
The encryption configuration details that include the status information of the AWS Key Management Service ( AWS ) key and the AWS access role.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const configurationDetailsProperty: iot_mixins.CfnEncryptionConfigurationPropsMixin.ConfigurationDetailsProperty = {
configurationStatus: 'configurationStatus',
errorCode: 'errorCode',
errorMessage: 'errorMessage',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | string | The health status of KMS key and AWS access role. |
| error | string | The error code that indicates either the KMS key or the AWS access role is UNHEALTHY . |
| error | string | The detailed error message that corresponds to the errorCode . |
configurationStatus?
Type:
string
(optional)
The health status of KMS key and AWS access role.
If either KMS key or AWS access role is UNHEALTHY , the return value will be UNHEALTHY . To use a customer managed KMS key, the value of configurationStatus must be HEALTHY .
errorCode?
Type:
string
(optional)
The error code that indicates either the KMS key or the AWS access role is UNHEALTHY .
Valid values: KMS_KEY_VALIDATION_ERROR and ROLE_VALIDATION_ERROR .
errorMessage?
Type:
string
(optional)
The detailed error message that corresponds to the errorCode .

.NET
Go
Java
Python
TypeScript