AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
AddFlowVpcInterfacesRequest.h
1
6#pragma once
7#include <aws/mediaconnect/MediaConnect_EXPORTS.h>
8#include <aws/mediaconnect/MediaConnectRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/mediaconnect/model/VpcInterfaceRequest.h>
12#include <utility>
13
14namespace Aws
15{
16namespace MediaConnect
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_MEDIACONNECT_API AddFlowVpcInterfacesRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "AddFlowVpcInterfaces"; }
33
34 AWS_MEDIACONNECT_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetFlowArn() const { return m_flowArn; }
42 inline bool FlowArnHasBeenSet() const { return m_flowArnHasBeenSet; }
43 template<typename FlowArnT = Aws::String>
44 void SetFlowArn(FlowArnT&& value) { m_flowArnHasBeenSet = true; m_flowArn = std::forward<FlowArnT>(value); }
45 template<typename FlowArnT = Aws::String>
46 AddFlowVpcInterfacesRequest& WithFlowArn(FlowArnT&& value) { SetFlowArn(std::forward<FlowArnT>(value)); return *this;}
48
50
53 inline const Aws::Vector<VpcInterfaceRequest>& GetVpcInterfaces() const { return m_vpcInterfaces; }
54 inline bool VpcInterfacesHasBeenSet() const { return m_vpcInterfacesHasBeenSet; }
55 template<typename VpcInterfacesT = Aws::Vector<VpcInterfaceRequest>>
56 void SetVpcInterfaces(VpcInterfacesT&& value) { m_vpcInterfacesHasBeenSet = true; m_vpcInterfaces = std::forward<VpcInterfacesT>(value); }
57 template<typename VpcInterfacesT = Aws::Vector<VpcInterfaceRequest>>
58 AddFlowVpcInterfacesRequest& WithVpcInterfaces(VpcInterfacesT&& value) { SetVpcInterfaces(std::forward<VpcInterfacesT>(value)); return *this;}
59 template<typename VpcInterfacesT = VpcInterfaceRequest>
60 AddFlowVpcInterfacesRequest& AddVpcInterfaces(VpcInterfacesT&& value) { m_vpcInterfacesHasBeenSet = true; m_vpcInterfaces.emplace_back(std::forward<VpcInterfacesT>(value)); return *this; }
62 private:
63
64 Aws::String m_flowArn;
65 bool m_flowArnHasBeenSet = false;
66
68 bool m_vpcInterfacesHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace MediaConnect
73} // namespace Aws
AWS_MEDIACONNECT_API Aws::String SerializePayload() const override
const Aws::Vector< VpcInterfaceRequest > & GetVpcInterfaces() const
AddFlowVpcInterfacesRequest & WithVpcInterfaces(VpcInterfacesT &&value)
AWS_MEDIACONNECT_API AddFlowVpcInterfacesRequest()=default
AddFlowVpcInterfacesRequest & WithFlowArn(FlowArnT &&value)
AddFlowVpcInterfacesRequest & AddVpcInterfaces(VpcInterfacesT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector