Interface CfnDeliveryStream.EncryptionConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeliveryStream.EncryptionConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDeliveryStream

@Stability(Stable) public static interface CfnDeliveryStream.EncryptionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisfirehose.*;
 EncryptionConfigurationProperty encryptionConfigurationProperty = EncryptionConfigurationProperty.builder()
         .kmsEncryptionConfig(KMSEncryptionConfigProperty.builder()
                 .awskmsKeyArn("awskmsKeyArn")
                 .build())
         .noEncryptionConfig("noEncryptionConfig")
         .build();
 

See Also: