interface EncryptionConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.EncryptionConfigurationProperty |
Python | aws_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
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 .