AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateGatewayBridgeSourceRequest.h
1
6#pragma once
7#include <aws/mediaconnect/MediaConnect_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/mediaconnect/model/VpcInterfaceAttachment.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace MediaConnect
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_MEDIACONNECT_API UpdateGatewayBridgeSourceRequest() = default;
39 AWS_MEDIACONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetBridgeArn() const { return m_bridgeArn; }
47 inline bool BridgeArnHasBeenSet() const { return m_bridgeArnHasBeenSet; }
48 template<typename BridgeArnT = Aws::String>
49 void SetBridgeArn(BridgeArnT&& value) { m_bridgeArnHasBeenSet = true; m_bridgeArn = std::forward<BridgeArnT>(value); }
50 template<typename BridgeArnT = Aws::String>
51 UpdateGatewayBridgeSourceRequest& WithBridgeArn(BridgeArnT&& value) { SetBridgeArn(std::forward<BridgeArnT>(value)); return *this;}
53
55
58 inline const VpcInterfaceAttachment& GetVpcInterfaceAttachment() const { return m_vpcInterfaceAttachment; }
59 inline bool VpcInterfaceAttachmentHasBeenSet() const { return m_vpcInterfaceAttachmentHasBeenSet; }
60 template<typename VpcInterfaceAttachmentT = VpcInterfaceAttachment>
61 void SetVpcInterfaceAttachment(VpcInterfaceAttachmentT&& value) { m_vpcInterfaceAttachmentHasBeenSet = true; m_vpcInterfaceAttachment = std::forward<VpcInterfaceAttachmentT>(value); }
62 template<typename VpcInterfaceAttachmentT = VpcInterfaceAttachment>
63 UpdateGatewayBridgeSourceRequest& WithVpcInterfaceAttachment(VpcInterfaceAttachmentT&& value) { SetVpcInterfaceAttachment(std::forward<VpcInterfaceAttachmentT>(value)); return *this;}
65 private:
66
67 Aws::String m_bridgeArn;
68 bool m_bridgeArnHasBeenSet = false;
69
70 VpcInterfaceAttachment m_vpcInterfaceAttachment;
71 bool m_vpcInterfaceAttachmentHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace MediaConnect
76} // namespace Aws
UpdateGatewayBridgeSourceRequest & WithVpcInterfaceAttachment(VpcInterfaceAttachmentT &&value)
AWS_MEDIACONNECT_API UpdateGatewayBridgeSourceRequest(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIACONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
UpdateGatewayBridgeSourceRequest & WithBridgeArn(BridgeArnT &&value)
AWS_MEDIACONNECT_API UpdateGatewayBridgeSourceRequest & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIACONNECT_API UpdateGatewayBridgeSourceRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue