interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.StepFunctions.CfnActivityPropsMixin.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsstepfunctions#CfnActivityPropsMixin_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.stepfunctions.CfnActivityPropsMixin.EncryptionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_stepfunctions.CfnActivityPropsMixin.EncryptionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_stepfunctions » CfnActivityPropsMixin » EncryptionConfigurationProperty |
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 key for encryption.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions as stepfunctions } from '@aws-cdk/cfn-property-mixins';
const encryptionConfigurationProperty: stepfunctions.CfnActivityPropsMixin.EncryptionConfigurationProperty = {
kmsDataKeyReusePeriodSeconds: 123,
kmsKeyId: 'kmsKeyId',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | number | Maximum duration that Step Functions will reuse data keys. |
| kms | string | An alias, alias ARN, key ID, or key ARN of a symmetric encryption AWS key to encrypt data. |
| type? | string | Encryption option for an activity. |
kmsDataKeyReusePeriodSeconds?
Type:
number
(optional)
Maximum duration that Step Functions will reuse data keys.
When the period expires, Step Functions will call GenerateDataKey . Only applies to customer managed keys.
kmsKeyId?
Type:
string
(optional)
An alias, alias ARN, key ID, or key ARN of a symmetric encryption AWS key to encrypt data.
To specify a AWS key in a different AWS account, you must use the key ARN or alias ARN.
type?
Type:
string
(optional)
Encryption option for an activity.

.NET
Go
Java
Python
TypeScript