aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.EncryptionConfigurationProperty

interface EncryptionConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.EncryptionConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_EncryptionConfigurationProperty
Javasoftware.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.EncryptionConfigurationProperty
Pythonaws_cdk.aws_kinesisfirehose.CfnDeliveryStream.EncryptionConfigurationProperty
TypeScript aws-cdk-lib » aws_kinesisfirehose » CfnDeliveryStream » EncryptionConfigurationProperty

The EncryptionConfiguration property type specifies the encryption settings that Amazon Kinesis Data Firehose (Kinesis Data Firehose) uses when delivering data to Amazon Simple Storage Service (Amazon S3).

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisfirehose as kinesisfirehose } from 'aws-cdk-lib';
const encryptionConfigurationProperty: kinesisfirehose.CfnDeliveryStream.EncryptionConfigurationProperty = {
  kmsEncryptionConfig: {
    awskmsKeyArn: 'awskmsKeyArn',
  },
  noEncryptionConfig: 'noEncryptionConfig',
};

Properties

NameTypeDescription
kmsEncryptionConfig?IResolvable | KMSEncryptionConfigPropertyThe AWS Key Management Service ( AWS KMS) encryption key that Amazon S3 uses to encrypt your data.
noEncryptionConfig?stringDisables encryption.

kmsEncryptionConfig?

Type: IResolvable | KMSEncryptionConfigProperty (optional)

The AWS Key Management Service ( AWS KMS) encryption key that Amazon S3 uses to encrypt your data.


noEncryptionConfig?

Type: string (optional)

Disables encryption.

For valid values, see the NoEncryptionConfig content for the EncryptionConfiguration data type in the Amazon Kinesis Data Firehose API Reference .