StartExecutionProps

class aws_cdk.aws_stepfunctions_tasks.StartExecutionProps(*, input=None, integration_pattern=None, name=None)

Bases: object

(deprecated) Properties for StartExecution.

Parameters:
  • input (Optional[Mapping[str, Any]]) – (deprecated) The JSON input for the execution, same as that of StartExecution. Default: - No input

  • integration_pattern (Optional[ServiceIntegrationPattern]) – (deprecated) The service integration pattern indicates different ways to call StartExecution to Step Functions. Default: FIRE_AND_FORGET

  • name (Optional[str]) – (deprecated) The name of the execution, same as that of StartExecution. Default: - None

Deprecated:
  • use ‘StepFunctionsStartExecution’

Stability:

deprecated

ExampleMetadata:

fixture=_generated

Example:

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

# input: Any

start_execution_props = stepfunctions_tasks.StartExecutionProps(
    input={
        "input_key": input
    },
    integration_pattern=stepfunctions.ServiceIntegrationPattern.FIRE_AND_FORGET,
    name="name"
)

Attributes

input

(deprecated) The JSON input for the execution, same as that of StartExecution.

Default:
  • No input

See:

https://docs.aws.amazon.com/step-functions/latest/apireference/API_StartExecution.html

Stability:

deprecated

integration_pattern

(deprecated) The service integration pattern indicates different ways to call StartExecution to Step Functions.

Default:

FIRE_AND_FORGET

See:

https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html

Stability:

deprecated

name

(deprecated) The name of the execution, same as that of StartExecution.

Default:
  • None

See:

https://docs.aws.amazon.com/step-functions/latest/apireference/API_StartExecution.html

Stability:

deprecated