ActivityProps

class aws_cdk.aws_stepfunctions.ActivityProps(*, activity_name=None)

Bases: object

Properties for defining a new Step Functions Activity.

Parameters:

activity_name (Optional[str]) – The name for this activity. Default: - If not supplied, a name is generated

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_stepfunctions as stepfunctions

activity_props = stepfunctions.ActivityProps(
    activity_name="activityName"
)

Attributes

activity_name

The name for this activity.

Default:
  • If not supplied, a name is generated