interface CfnActivityMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.StepFunctions.Mixins.CfnActivityMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstepfunctions/mixins#CfnActivityMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.stepfunctions.mixins.CfnActivityMixinProps |
Python | aws_cdk.mixins_preview.aws_stepfunctions.mixins.CfnActivityMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_stepfunctions » mixins » CfnActivityMixinProps |
Properties for CfnActivityPropsMixin.
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 cfnActivityMixinProps: stepfunctions_mixins.CfnActivityMixinProps = {
encryptionConfiguration: {
kmsDataKeyReusePeriodSeconds: 123,
kmsKeyId: 'kmsKeyId',
type: 'type',
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Encryption | Encryption configuration for the activity. |
| name? | string | The name of the activity. |
| tags? | Tags[] | The list of tags to add to a resource. |
encryptionConfiguration?
Type:
IResolvable | Encryption
(optional)
Encryption configuration for the activity.
Activity configuration is immutable, and resource names must be unique. To set customer managed keys for encryption, you must create a new Activity . If you attempt to change the configuration in your CFN template for an existing activity, you will receive an ActivityAlreadyExists exception.
To update your activity to include customer managed keys, set a new activity name within your CloudFormation template.
name?
Type:
string
(optional)
The name of the activity.
A name must not contain:
- white space
- brackets
< > { } [ ] - wildcard characters
? * - special characters
" # % \ ^ | ~$ & , ; : /` - control characters (
U+0000-001F,U+007F-009F,U+FFFE-FFFF) - surrogates (
U+D800-DFFF) - invalid characters (
U+10FFFF)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
tags?
Type:
Tags[]
(optional)
The list of tags to add to a resource.
Tags may only contain Unicode letters, digits, white space, or these symbols: `_ . : / = + -

.NET
Go
Java
Python
TypeScript