@Stability(value=Stable)
public static interface CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty
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.*;
DeliveryStreamEncryptionConfigurationInputProperty deliveryStreamEncryptionConfigurationInputProperty = DeliveryStreamEncryptionConfigurationInputProperty.builder()
.keyType("keyType")
// the properties below are optional
.keyArn("keyArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty.Builder
|
static class |
CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty.Builder |
builder() |
default String |
getKeyArn()
If you set `KeyType` to `CUSTOMER_MANAGED_CMK` , you must specify the Amazon Resource Name (ARN) of the CMK.
|
String |
getKeyType()
Indicates the type of customer master key (CMK) to use for encryption.
|
@Stability(value=Stable) @NotNull String getKeyType()
The default setting is AWS_OWNED_CMK . For more information about CMKs, see Customer Master Keys (CMKs) .
You can use a CMK of type CUSTOMER_MANAGED_CMK to encrypt up to 500 delivery streams.
To encrypt your delivery stream, use symmetric CMKs. Kinesis Data Firehose doesn't support asymmetric CMKs. For information about symmetric and asymmetric CMKs, see About Symmetric and Asymmetric CMKs in the AWS Key Management Service developer guide.
@Stability(value=Stable) @Nullable default String getKeyArn()
If you set KeyType to AWS _OWNED_CMK , Kinesis Data Firehose uses a service-account CMK.
@Stability(value=Stable) static CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty.Builder builder()
Copyright © 2022. All rights reserved.