/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MediaConnect { namespace Model { /** * The output of the bridge. A flow output is delivered to the AWS cloud.

See * Also:

AWS * API Reference

*/ class BridgeFlowOutput { public: AWS_MEDIACONNECT_API BridgeFlowOutput(); AWS_MEDIACONNECT_API BridgeFlowOutput(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIACONNECT_API BridgeFlowOutput& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIACONNECT_API Aws::Utils::Json::JsonValue Jsonize() const; /** * The Amazon Resource Number (ARN) of the cloud flow. */ inline const Aws::String& GetFlowArn() const{ return m_flowArn; } /** * The Amazon Resource Number (ARN) of the cloud flow. */ inline bool FlowArnHasBeenSet() const { return m_flowArnHasBeenSet; } /** * The Amazon Resource Number (ARN) of the cloud flow. */ inline void SetFlowArn(const Aws::String& value) { m_flowArnHasBeenSet = true; m_flowArn = value; } /** * The Amazon Resource Number (ARN) of the cloud flow. */ inline void SetFlowArn(Aws::String&& value) { m_flowArnHasBeenSet = true; m_flowArn = std::move(value); } /** * The Amazon Resource Number (ARN) of the cloud flow. */ inline void SetFlowArn(const char* value) { m_flowArnHasBeenSet = true; m_flowArn.assign(value); } /** * The Amazon Resource Number (ARN) of the cloud flow. */ inline BridgeFlowOutput& WithFlowArn(const Aws::String& value) { SetFlowArn(value); return *this;} /** * The Amazon Resource Number (ARN) of the cloud flow. */ inline BridgeFlowOutput& WithFlowArn(Aws::String&& value) { SetFlowArn(std::move(value)); return *this;} /** * The Amazon Resource Number (ARN) of the cloud flow. */ inline BridgeFlowOutput& WithFlowArn(const char* value) { SetFlowArn(value); return *this;} /** * The Amazon Resource Number (ARN) of the flow source. */ inline const Aws::String& GetFlowSourceArn() const{ return m_flowSourceArn; } /** * The Amazon Resource Number (ARN) of the flow source. */ inline bool FlowSourceArnHasBeenSet() const { return m_flowSourceArnHasBeenSet; } /** * The Amazon Resource Number (ARN) of the flow source. */ inline void SetFlowSourceArn(const Aws::String& value) { m_flowSourceArnHasBeenSet = true; m_flowSourceArn = value; } /** * The Amazon Resource Number (ARN) of the flow source. */ inline void SetFlowSourceArn(Aws::String&& value) { m_flowSourceArnHasBeenSet = true; m_flowSourceArn = std::move(value); } /** * The Amazon Resource Number (ARN) of the flow source. */ inline void SetFlowSourceArn(const char* value) { m_flowSourceArnHasBeenSet = true; m_flowSourceArn.assign(value); } /** * The Amazon Resource Number (ARN) of the flow source. */ inline BridgeFlowOutput& WithFlowSourceArn(const Aws::String& value) { SetFlowSourceArn(value); return *this;} /** * The Amazon Resource Number (ARN) of the flow source. */ inline BridgeFlowOutput& WithFlowSourceArn(Aws::String&& value) { SetFlowSourceArn(std::move(value)); return *this;} /** * The Amazon Resource Number (ARN) of the flow source. */ inline BridgeFlowOutput& WithFlowSourceArn(const char* value) { SetFlowSourceArn(value); return *this;} /** * The name of the bridge's output. */ inline const Aws::String& GetName() const{ return m_name; } /** * The name of the bridge's output. */ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** * The name of the bridge's output. */ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** * The name of the bridge's output. */ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** * The name of the bridge's output. */ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** * The name of the bridge's output. */ inline BridgeFlowOutput& WithName(const Aws::String& value) { SetName(value); return *this;} /** * The name of the bridge's output. */ inline BridgeFlowOutput& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** * The name of the bridge's output. */ inline BridgeFlowOutput& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_flowArn; bool m_flowArnHasBeenSet = false; Aws::String m_flowSourceArn; bool m_flowSourceArnHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; }; } // namespace Model } // namespace MediaConnect } // namespace Aws