/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace SSM { namespace Model { /** */ class StopAutomationExecutionRequest : public SSMRequest { public: AWS_SSM_API StopAutomationExecutionRequest(); // 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 "StopAutomationExecution"; } AWS_SSM_API Aws::String SerializePayload() const override; AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The execution ID of the Automation to stop.

*/ inline const Aws::String& GetAutomationExecutionId() const{ return m_automationExecutionId; } /** *

The execution ID of the Automation to stop.

*/ inline bool AutomationExecutionIdHasBeenSet() const { return m_automationExecutionIdHasBeenSet; } /** *

The execution ID of the Automation to stop.

*/ inline void SetAutomationExecutionId(const Aws::String& value) { m_automationExecutionIdHasBeenSet = true; m_automationExecutionId = value; } /** *

The execution ID of the Automation to stop.

*/ inline void SetAutomationExecutionId(Aws::String&& value) { m_automationExecutionIdHasBeenSet = true; m_automationExecutionId = std::move(value); } /** *

The execution ID of the Automation to stop.

*/ inline void SetAutomationExecutionId(const char* value) { m_automationExecutionIdHasBeenSet = true; m_automationExecutionId.assign(value); } /** *

The execution ID of the Automation to stop.

*/ inline StopAutomationExecutionRequest& WithAutomationExecutionId(const Aws::String& value) { SetAutomationExecutionId(value); return *this;} /** *

The execution ID of the Automation to stop.

*/ inline StopAutomationExecutionRequest& WithAutomationExecutionId(Aws::String&& value) { SetAutomationExecutionId(std::move(value)); return *this;} /** *

The execution ID of the Automation to stop.

*/ inline StopAutomationExecutionRequest& WithAutomationExecutionId(const char* value) { SetAutomationExecutionId(value); return *this;} /** *

The stop request type. Valid types include the following: Cancel and * Complete. The default type is Cancel.

*/ inline const StopType& GetType() const{ return m_type; } /** *

The stop request type. Valid types include the following: Cancel and * Complete. The default type is Cancel.

*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *

The stop request type. Valid types include the following: Cancel and * Complete. The default type is Cancel.

*/ inline void SetType(const StopType& value) { m_typeHasBeenSet = true; m_type = value; } /** *

The stop request type. Valid types include the following: Cancel and * Complete. The default type is Cancel.

*/ inline void SetType(StopType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *

The stop request type. Valid types include the following: Cancel and * Complete. The default type is Cancel.

*/ inline StopAutomationExecutionRequest& WithType(const StopType& value) { SetType(value); return *this;} /** *

The stop request type. Valid types include the following: Cancel and * Complete. The default type is Cancel.

*/ inline StopAutomationExecutionRequest& WithType(StopType&& value) { SetType(std::move(value)); return *this;} private: Aws::String m_automationExecutionId; bool m_automationExecutionIdHasBeenSet = false; StopType m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace SSM } // namespace Aws