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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnActivity.EncryptionConfigurationProperty
static final class
An implementation forCfnActivity.EncryptionConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
Encryption option for an activity. -
getKmsDataKeyReusePeriodSeconds
Maximum duration that Step Functions will reuse data keys.When the period expires, Step Functions will call
GenerateDataKey
. Only applies to customer managed keys. -
getKmsKeyId
An alias, alias ARN, key ID, or key ARN of a symmetric encryption AWS KMS key to encrypt data.To specify a AWS KMS key in a different AWS account, you must use the key ARN or alias ARN.
-
builder
-