Interface CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty

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

@Stability(Stable) public static interface CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty extends software.amazon.jsii.JsiiSerializable
Specifies the type and Amazon Resource Name (ARN) of the CMK to use for Server-Side Encryption (SSE).

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.*;
 DeliveryStreamEncryptionConfigurationInputProperty deliveryStreamEncryptionConfigurationInputProperty = DeliveryStreamEncryptionConfigurationInputProperty.builder()
         .keyType("keyType")
         // the properties below are optional
         .keyArn("keyArn")
         .build();
 

See Also: