interface CfnEncryptionConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnEncryptionConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnEncryptionConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnEncryptionConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnEncryptionConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnEncryptionConfigurationMixinProps |
Properties for CfnEncryptionConfigurationPropsMixin.
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 cfnEncryptionConfigurationMixinProps: iot_mixins.CfnEncryptionConfigurationMixinProps = {
encryptionType: 'encryptionType',
kmsAccessRoleArn: 'kmsAccessRoleArn',
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | string | The type of the KMS key. |
| kms | string | The Amazon Resource Name (ARN) of the IAM role assumed by AWS IoT Core to call AWS on behalf of the customer. |
| kms | string | The ARN of the customer managed KMS key. |
encryptionType?
Type:
string
(optional)
The type of the KMS key.
kmsAccessRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role assumed by AWS IoT Core to call AWS on behalf of the customer.
kmsKeyArn?
Type:
string
(optional)
The ARN of the customer managed KMS key.

.NET
Go
Java
Python
TypeScript