@Stability(value=Stable)
public static interface CfnDeliveryStream.EncryptionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getKmsEncryptionConfig()
The AWS Key Management Service ( AWS KMS) encryption key that Amazon S3 uses to encrypt your data.
|
default String |
getNoEncryptionConfig()
Disables encryption.
|
@Stability(value=Stable) @Nullable default Object getKmsEncryptionConfig()
@Stability(value=Stable) @Nullable default String getNoEncryptionConfig()
For valid values, see the NoEncryptionConfig content for the EncryptionConfiguration data type in the Amazon Kinesis Data Firehose API Reference .
@Stability(value=Stable) static CfnDeliveryStream.EncryptionConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.