/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace SFN { namespace Model { /** */ class AWS_SFN_API StartExecutionRequest : public SFNRequest { public: StartExecutionRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "StartExecution"; } Aws::String SerializePayload() const override; Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) of the state machine to execute.

*/ inline const Aws::String& GetStateMachineArn() const{ return m_stateMachineArn; } /** *

The Amazon Resource Name (ARN) of the state machine to execute.

*/ inline bool StateMachineArnHasBeenSet() const { return m_stateMachineArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the state machine to execute.

*/ inline void SetStateMachineArn(const Aws::String& value) { m_stateMachineArnHasBeenSet = true; m_stateMachineArn = value; } /** *

The Amazon Resource Name (ARN) of the state machine to execute.

*/ inline void SetStateMachineArn(Aws::String&& value) { m_stateMachineArnHasBeenSet = true; m_stateMachineArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the state machine to execute.

*/ inline void SetStateMachineArn(const char* value) { m_stateMachineArnHasBeenSet = true; m_stateMachineArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the state machine to execute.

*/ inline StartExecutionRequest& WithStateMachineArn(const Aws::String& value) { SetStateMachineArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the state machine to execute.

*/ inline StartExecutionRequest& WithStateMachineArn(Aws::String&& value) { SetStateMachineArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the state machine to execute.

*/ inline StartExecutionRequest& WithStateMachineArn(const char* value) { SetStateMachineArn(value); return *this;} /** *

The name of the execution. This name must be unique for your AWS account, * region, and state machine for 90 days. For more information, see * Limits Related to State Machine Executions in the AWS Step Functions * Developer Guide.

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 _.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the execution. This name must be unique for your AWS account, * region, and state machine for 90 days. For more information, see * Limits Related to State Machine Executions in the AWS Step Functions * Developer Guide.

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 _.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the execution. This name must be unique for your AWS account, * region, and state machine for 90 days. For more information, see * Limits Related to State Machine Executions in the AWS Step Functions * Developer Guide.

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 _.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the execution. This name must be unique for your AWS account, * region, and state machine for 90 days. For more information, see * Limits Related to State Machine Executions in the AWS Step Functions * Developer Guide.

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 _.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the execution. This name must be unique for your AWS account, * region, and state machine for 90 days. For more information, see * Limits Related to State Machine Executions in the AWS Step Functions * Developer Guide.

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 _.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the execution. This name must be unique for your AWS account, * region, and state machine for 90 days. For more information, see * Limits Related to State Machine Executions in the AWS Step Functions * Developer Guide.

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 _.

*/ inline StartExecutionRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the execution. This name must be unique for your AWS account, * region, and state machine for 90 days. For more information, see * Limits Related to State Machine Executions in the AWS Step Functions * Developer Guide.

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 _.

*/ inline StartExecutionRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the execution. This name must be unique for your AWS account, * region, and state machine for 90 days. For more information, see * Limits Related to State Machine Executions in the AWS Step Functions * Developer Guide.

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 _.

*/ inline StartExecutionRequest& WithName(const char* value) { SetName(value); return *this;} /** *

The string that contains the JSON input data for the execution, for * example:

"input": "{\"first_name\" : \"test\"}"

*

If you don't include any JSON input data, you still must include the two * braces, for example: "input": "{}"

*/ inline const Aws::String& GetInput() const{ return m_input; } /** *

The string that contains the JSON input data for the execution, for * example:

"input": "{\"first_name\" : \"test\"}"

*

If you don't include any JSON input data, you still must include the two * braces, for example: "input": "{}"

*/ inline bool InputHasBeenSet() const { return m_inputHasBeenSet; } /** *

The string that contains the JSON input data for the execution, for * example:

"input": "{\"first_name\" : \"test\"}"

*

If you don't include any JSON input data, you still must include the two * braces, for example: "input": "{}"

*/ inline void SetInput(const Aws::String& value) { m_inputHasBeenSet = true; m_input = value; } /** *

The string that contains the JSON input data for the execution, for * example:

"input": "{\"first_name\" : \"test\"}"

*

If you don't include any JSON input data, you still must include the two * braces, for example: "input": "{}"

*/ inline void SetInput(Aws::String&& value) { m_inputHasBeenSet = true; m_input = std::move(value); } /** *

The string that contains the JSON input data for the execution, for * example:

"input": "{\"first_name\" : \"test\"}"

*

If you don't include any JSON input data, you still must include the two * braces, for example: "input": "{}"

*/ inline void SetInput(const char* value) { m_inputHasBeenSet = true; m_input.assign(value); } /** *

The string that contains the JSON input data for the execution, for * example:

"input": "{\"first_name\" : \"test\"}"

*

If you don't include any JSON input data, you still must include the two * braces, for example: "input": "{}"

*/ inline StartExecutionRequest& WithInput(const Aws::String& value) { SetInput(value); return *this;} /** *

The string that contains the JSON input data for the execution, for * example:

"input": "{\"first_name\" : \"test\"}"

*

If you don't include any JSON input data, you still must include the two * braces, for example: "input": "{}"

*/ inline StartExecutionRequest& WithInput(Aws::String&& value) { SetInput(std::move(value)); return *this;} /** *

The string that contains the JSON input data for the execution, for * example:

"input": "{\"first_name\" : \"test\"}"

*

If you don't include any JSON input data, you still must include the two * braces, for example: "input": "{}"

*/ inline StartExecutionRequest& WithInput(const char* value) { SetInput(value); return *this;} private: Aws::String m_stateMachineArn; bool m_stateMachineArnHasBeenSet; Aws::String m_name; bool m_nameHasBeenSet; Aws::String m_input; bool m_inputHasBeenSet; }; } // namespace Model } // namespace SFN } // namespace Aws