Interface CfnActivity.EncryptionConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnActivity.EncryptionConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnActivity

@Stability(Stable) public static interface CfnActivity.EncryptionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Settings to configure server-side encryption for an activity.

By default, Step Functions provides transparent server-side encryption. With this configuration, you can specify a customer managed AWS KMS key for encryption.

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.stepfunctions.*;
 EncryptionConfigurationProperty encryptionConfigurationProperty = EncryptionConfigurationProperty.builder()
         .type("type")
         // the properties below are optional
         .kmsDataKeyReusePeriodSeconds(123)
         .kmsKeyId("kmsKeyId")
         .build();
 

See Also: