public static interface CfnDeliveryStream.EncryptionConfigurationProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDeliveryStream.EncryptionConfigurationProperty.Builder
A builder for
CfnDeliveryStream.EncryptionConfigurationProperty |
static class |
CfnDeliveryStream.EncryptionConfigurationProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.EncryptionConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDeliveryStream.EncryptionConfigurationProperty.Builder |
builder() |
default java.lang.Object |
getKmsEncryptionConfig()
The AWS Key Management Service ( AWS KMS) encryption key that Amazon S3 uses to encrypt your data.
|
default java.lang.String |
getNoEncryptionConfig()
Disables encryption.
|
default java.lang.Object getKmsEncryptionConfig()
default java.lang.String getNoEncryptionConfig()
For valid values, see the NoEncryptionConfig
content for the EncryptionConfiguration data type in the Amazon Kinesis Data Firehose API Reference .
static CfnDeliveryStream.EncryptionConfigurationProperty.Builder builder()