AWS SDK for C++

AWS SDK for C++ Version 1.11.744

Loading...
Searching...
No Matches
UpdateBridgeFlowSourceRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/mediaconnect/MediaConnect_EXPORTS.h>
9#include <aws/mediaconnect/model/VpcInterfaceAttachment.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace MediaConnect {
21namespace Model {
22
29 public:
30 AWS_MEDIACONNECT_API UpdateBridgeFlowSourceRequest() = default;
33 AWS_MEDIACONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetFlowArn() const { return m_flowArn; }
41 inline bool FlowArnHasBeenSet() const { return m_flowArnHasBeenSet; }
42 template <typename FlowArnT = Aws::String>
43 void SetFlowArn(FlowArnT&& value) {
44 m_flowArnHasBeenSet = true;
45 m_flowArn = std::forward<FlowArnT>(value);
46 }
47 template <typename FlowArnT = Aws::String>
49 SetFlowArn(std::forward<FlowArnT>(value));
50 return *this;
51 }
53
55
58 inline const VpcInterfaceAttachment& GetFlowVpcInterfaceAttachment() const { return m_flowVpcInterfaceAttachment; }
59 inline bool FlowVpcInterfaceAttachmentHasBeenSet() const { return m_flowVpcInterfaceAttachmentHasBeenSet; }
60 template <typename FlowVpcInterfaceAttachmentT = VpcInterfaceAttachment>
61 void SetFlowVpcInterfaceAttachment(FlowVpcInterfaceAttachmentT&& value) {
62 m_flowVpcInterfaceAttachmentHasBeenSet = true;
63 m_flowVpcInterfaceAttachment = std::forward<FlowVpcInterfaceAttachmentT>(value);
64 }
65 template <typename FlowVpcInterfaceAttachmentT = VpcInterfaceAttachment>
66 UpdateBridgeFlowSourceRequest& WithFlowVpcInterfaceAttachment(FlowVpcInterfaceAttachmentT&& value) {
67 SetFlowVpcInterfaceAttachment(std::forward<FlowVpcInterfaceAttachmentT>(value));
68 return *this;
69 }
71 private:
72 Aws::String m_flowArn;
73
74 VpcInterfaceAttachment m_flowVpcInterfaceAttachment;
75 bool m_flowArnHasBeenSet = false;
76 bool m_flowVpcInterfaceAttachmentHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace MediaConnect
81} // namespace Aws
AWS_MEDIACONNECT_API UpdateBridgeFlowSourceRequest()=default
void SetFlowVpcInterfaceAttachment(FlowVpcInterfaceAttachmentT &&value)
AWS_MEDIACONNECT_API UpdateBridgeFlowSourceRequest & operator=(Aws::Utils::Json::JsonView jsonValue)
UpdateBridgeFlowSourceRequest & WithFlowArn(FlowArnT &&value)
AWS_MEDIACONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MEDIACONNECT_API UpdateBridgeFlowSourceRequest(Aws::Utils::Json::JsonView jsonValue)
UpdateBridgeFlowSourceRequest & WithFlowVpcInterfaceAttachment(FlowVpcInterfaceAttachmentT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue