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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeliveryStream.EncryptionConfigurationPropertystatic final classAn implementation forCfnDeliveryStream.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
IResolvableorCfnDeliveryStream.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
-