interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.EncryptionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.EncryptionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » 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 { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const encryptionConfigurationProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.EncryptionConfigurationProperty = {
kmsEncryptionConfig: {
awskmsKeyArn: 'awskmsKeyArn',
},
noEncryptionConfig: 'noEncryptionConfig',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | IResolvable | KMSEncryption | The AWS Key Management Service ( AWS KMS) encryption key that Amazon S3 uses to encrypt your data. |
| no | string | Disables encryption. |
kmsEncryptionConfig?
Type:
IResolvable | KMSEncryption
(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 .

.NET
Go
Java
Python
TypeScript