interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.StepFunctions.Mixins.CfnActivityPropsMixin.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstepfunctions/mixins#CfnActivityPropsMixin_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.stepfunctions.mixins.CfnActivityPropsMixin.EncryptionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_stepfunctions.mixins.CfnActivityPropsMixin.EncryptionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_stepfunctions » mixins » 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 { mixins as stepfunctions_mixins } from '@aws-cdk/mixins-preview/aws-stepfunctions';
const encryptionConfigurationProperty: stepfunctions_mixins.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