airflow.providers.amazon.aws.hooks.step_function
¶
Module Contents¶
Classes¶
Interact with an AWS Step Functions State Machine. |
- class airflow.providers.amazon.aws.hooks.step_function.StepFunctionHook(*args, **kwargs)[source]¶
Bases:
airflow.providers.amazon.aws.hooks.base_aws.AwsBaseHook
Interact with an AWS Step Functions State Machine.
Provide thin wrapper around
boto3.client("stepfunctions")
.Additional arguments (such as
aws_conn_id
) may be specified and are passed down to the underlying AwsBaseHook.- start_execution(state_machine_arn, name=None, state_machine_input=None)[source]¶
Start Execution of the State Machine.
See also