/** * 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 Appflow { namespace Model { /** */ class StopFlowRequest : public AppflowRequest { public: AWS_APPFLOW_API StopFlowRequest(); // 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 "StopFlow"; } AWS_APPFLOW_API Aws::String SerializePayload() const override; /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline const Aws::String& GetFlowName() const{ return m_flowName; } /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline bool FlowNameHasBeenSet() const { return m_flowNameHasBeenSet; } /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline void SetFlowName(const Aws::String& value) { m_flowNameHasBeenSet = true; m_flowName = value; } /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline void SetFlowName(Aws::String&& value) { m_flowNameHasBeenSet = true; m_flowName = std::move(value); } /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline void SetFlowName(const char* value) { m_flowNameHasBeenSet = true; m_flowName.assign(value); } /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline StopFlowRequest& WithFlowName(const Aws::String& value) { SetFlowName(value); return *this;} /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline StopFlowRequest& WithFlowName(Aws::String&& value) { SetFlowName(std::move(value)); return *this;} /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline StopFlowRequest& WithFlowName(const char* value) { SetFlowName(value); return *this;} private: Aws::String m_flowName; bool m_flowNameHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws