interface CfnActivityProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.StepFunctions.CfnActivityProps | 
  Java | software.amazon.awscdk.services.stepfunctions.CfnActivityProps | 
  Python | aws_cdk.aws_stepfunctions.CfnActivityProps | 
  TypeScript  | @aws-cdk/aws-stepfunctions » CfnActivityProps | 
Properties for defining a CfnActivity.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as stepfunctions from '@aws-cdk/aws-stepfunctions';
const cfnActivityProps: stepfunctions.CfnActivityProps = {
  name: 'name',
  // the properties below are optional
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| name | string | The name of the activity. | 
| tags? | Tags[] | The list of tags to add to a resource. | 
name
Type:
string
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) 
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
 Java
 Python
 TypeScript