Interface CfnDeliveryStreamPropsMixin.EncryptionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStreamPropsMixin.EncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStreamPropsMixin
@Stability(Stable)
public static interface CfnDeliveryStreamPropsMixin.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.mixins.preview.services.kinesisfirehose.mixins.*;
EncryptionConfigurationProperty encryptionConfigurationProperty = EncryptionConfigurationProperty.builder()
.kmsEncryptionConfig(KMSEncryptionConfigProperty.builder()
.awskmsKeyArn("awskmsKeyArn")
.build())
.noEncryptionConfig("noEncryptionConfig")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDeliveryStreamPropsMixin.EncryptionConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsEncryptionConfig
The AWS Key Management Service ( AWS KMS) encryption key that Amazon S3 uses to encrypt your data.Returns union: either
IResolvableorCfnDeliveryStreamPropsMixin.KMSEncryptionConfigProperty- See Also:
-
getNoEncryptionConfig
Disables encryption.For valid values, see the
NoEncryptionConfigcontent for the EncryptionConfiguration data type in the Amazon Kinesis Data Firehose API Reference .- See Also:
-
builder
@Stability(Stable) static CfnDeliveryStreamPropsMixin.EncryptionConfigurationProperty.Builder builder()
-