CfnExecutionMixinProps

class aws_cdk.cfn_property_mixins.aws_states.CfnExecutionMixinProps(*, input=None, name=None, state_machine_arn=None)

Bases: object

Properties for CfnExecutionPropsMixin.

Parameters:
  • input (Optional[str]) – The string that contains the JSON input data for the execution.

  • name (Optional[str]) – The name of the execution.

  • state_machine_arn (Optional[str]) – The Amazon Resource Name (ARN) of the state machine that was executed.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-states-execution.html

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.cfn_property_mixins import aws_states as states

cfn_execution_mixin_props = states.CfnExecutionMixinProps(
    input="input",
    name="name",
    state_machine_arn="stateMachineArn"
)

Attributes

input

The string that contains the JSON input data for the execution.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-states-execution.html#cfn-states-execution-input

name

The name of the execution.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-states-execution.html#cfn-states-execution-name

state_machine_arn

The Amazon Resource Name (ARN) of the state machine that was executed.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-states-execution.html#cfn-states-execution-statemachinearn