/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace MediaConnect { namespace Model { /** * A request to add outputs to the specified flow.

See Also:

AWS * API Reference

*/ class AddFlowOutputsRequest : public MediaConnectRequest { public: AWS_MEDIACONNECT_API AddFlowOutputsRequest(); // 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 "AddFlowOutputs"; } AWS_MEDIACONNECT_API Aws::String SerializePayload() const override; /** * The flow that you want to add outputs to. */ inline const Aws::String& GetFlowArn() const{ return m_flowArn; } /** * The flow that you want to add outputs to. */ inline bool FlowArnHasBeenSet() const { return m_flowArnHasBeenSet; } /** * The flow that you want to add outputs to. */ inline void SetFlowArn(const Aws::String& value) { m_flowArnHasBeenSet = true; m_flowArn = value; } /** * The flow that you want to add outputs to. */ inline void SetFlowArn(Aws::String&& value) { m_flowArnHasBeenSet = true; m_flowArn = std::move(value); } /** * The flow that you want to add outputs to. */ inline void SetFlowArn(const char* value) { m_flowArnHasBeenSet = true; m_flowArn.assign(value); } /** * The flow that you want to add outputs to. */ inline AddFlowOutputsRequest& WithFlowArn(const Aws::String& value) { SetFlowArn(value); return *this;} /** * The flow that you want to add outputs to. */ inline AddFlowOutputsRequest& WithFlowArn(Aws::String&& value) { SetFlowArn(std::move(value)); return *this;} /** * The flow that you want to add outputs to. */ inline AddFlowOutputsRequest& WithFlowArn(const char* value) { SetFlowArn(value); return *this;} /** * A list of outputs that you want to add. */ inline const Aws::Vector& GetOutputs() const{ return m_outputs; } /** * A list of outputs that you want to add. */ inline bool OutputsHasBeenSet() const { return m_outputsHasBeenSet; } /** * A list of outputs that you want to add. */ inline void SetOutputs(const Aws::Vector& value) { m_outputsHasBeenSet = true; m_outputs = value; } /** * A list of outputs that you want to add. */ inline void SetOutputs(Aws::Vector&& value) { m_outputsHasBeenSet = true; m_outputs = std::move(value); } /** * A list of outputs that you want to add. */ inline AddFlowOutputsRequest& WithOutputs(const Aws::Vector& value) { SetOutputs(value); return *this;} /** * A list of outputs that you want to add. */ inline AddFlowOutputsRequest& WithOutputs(Aws::Vector&& value) { SetOutputs(std::move(value)); return *this;} /** * A list of outputs that you want to add. */ inline AddFlowOutputsRequest& AddOutputs(const AddOutputRequest& value) { m_outputsHasBeenSet = true; m_outputs.push_back(value); return *this; } /** * A list of outputs that you want to add. */ inline AddFlowOutputsRequest& AddOutputs(AddOutputRequest&& value) { m_outputsHasBeenSet = true; m_outputs.push_back(std::move(value)); return *this; } private: Aws::String m_flowArn; bool m_flowArnHasBeenSet = false; Aws::Vector m_outputs; bool m_outputsHasBeenSet = false; }; } // namespace Model } // namespace MediaConnect } // namespace Aws