CfnEncryptionConfigurationProps

class aws_cdk.aws_iot.CfnEncryptionConfigurationProps(*, encryption_type, kms_access_role_arn=None, kms_key_arn=None)

Bases: object

Properties for defining a CfnEncryptionConfiguration.

Parameters:
  • encryption_type (str)

  • kms_access_role_arn (Optional[str])

  • kms_key_arn (Optional[str])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_iot as iot

cfn_encryption_configuration_props = iot.CfnEncryptionConfigurationProps(
    encryption_type="encryptionType",

    # the properties below are optional
    kms_access_role_arn="kmsAccessRoleArn",
    kms_key_arn="kmsKeyArn"
)

Attributes

encryption_type

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html#cfn-iot-encryptionconfiguration-encryptiontype

Type:

see

kms_access_role_arn

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html#cfn-iot-encryptionconfiguration-kmsaccessrolearn

Type:

see

kms_key_arn

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html#cfn-iot-encryptionconfiguration-kmskeyarn

Type:

see