AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeTransitGatewayAttachmentsRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/ec2/EC2Request.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/ec2/model/Filter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace EC2
17{
18namespace Model
19{
20
24 {
25 public:
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 "DescribeTransitGatewayAttachments"; }
33
34 AWS_EC2_API Aws::String SerializePayload() const override;
35
36 protected:
37 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
38
39 public:
40
42
45 inline const Aws::Vector<Aws::String>& GetTransitGatewayAttachmentIds() const { return m_transitGatewayAttachmentIds; }
46 inline bool TransitGatewayAttachmentIdsHasBeenSet() const { return m_transitGatewayAttachmentIdsHasBeenSet; }
47 template<typename TransitGatewayAttachmentIdsT = Aws::Vector<Aws::String>>
48 void SetTransitGatewayAttachmentIds(TransitGatewayAttachmentIdsT&& value) { m_transitGatewayAttachmentIdsHasBeenSet = true; m_transitGatewayAttachmentIds = std::forward<TransitGatewayAttachmentIdsT>(value); }
49 template<typename TransitGatewayAttachmentIdsT = Aws::Vector<Aws::String>>
50 DescribeTransitGatewayAttachmentsRequest& WithTransitGatewayAttachmentIds(TransitGatewayAttachmentIdsT&& value) { SetTransitGatewayAttachmentIds(std::forward<TransitGatewayAttachmentIdsT>(value)); return *this;}
51 template<typename TransitGatewayAttachmentIdsT = Aws::String>
52 DescribeTransitGatewayAttachmentsRequest& AddTransitGatewayAttachmentIds(TransitGatewayAttachmentIdsT&& value) { m_transitGatewayAttachmentIdsHasBeenSet = true; m_transitGatewayAttachmentIds.emplace_back(std::forward<TransitGatewayAttachmentIdsT>(value)); return *this; }
54
56
79 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
80 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
81 template<typename FiltersT = Aws::Vector<Filter>>
82 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
83 template<typename FiltersT = Aws::Vector<Filter>>
84 DescribeTransitGatewayAttachmentsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
85 template<typename FiltersT = Filter>
86 DescribeTransitGatewayAttachmentsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
88
90
95 inline int GetMaxResults() const { return m_maxResults; }
96 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
97 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
98 inline DescribeTransitGatewayAttachmentsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
100
102
105 inline const Aws::String& GetNextToken() const { return m_nextToken; }
106 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
107 template<typename NextTokenT = Aws::String>
108 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
109 template<typename NextTokenT = Aws::String>
110 DescribeTransitGatewayAttachmentsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
112
114
120 inline bool GetDryRun() const { return m_dryRun; }
121 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
122 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
123 inline DescribeTransitGatewayAttachmentsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
125 private:
126
127 Aws::Vector<Aws::String> m_transitGatewayAttachmentIds;
128 bool m_transitGatewayAttachmentIdsHasBeenSet = false;
129
130 Aws::Vector<Filter> m_filters;
131 bool m_filtersHasBeenSet = false;
132
133 int m_maxResults{0};
134 bool m_maxResultsHasBeenSet = false;
135
136 Aws::String m_nextToken;
137 bool m_nextTokenHasBeenSet = false;
138
139 bool m_dryRun{false};
140 bool m_dryRunHasBeenSet = false;
141 };
142
143} // namespace Model
144} // namespace EC2
145} // namespace Aws
DescribeTransitGatewayAttachmentsRequest & AddTransitGatewayAttachmentIds(TransitGatewayAttachmentIdsT &&value)
DescribeTransitGatewayAttachmentsRequest & WithNextToken(NextTokenT &&value)
DescribeTransitGatewayAttachmentsRequest & WithTransitGatewayAttachmentIds(TransitGatewayAttachmentIdsT &&value)
DescribeTransitGatewayAttachmentsRequest & WithMaxResults(int value)
DescribeTransitGatewayAttachmentsRequest & AddFilters(FiltersT &&value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeTransitGatewayAttachmentsRequest & WithFilters(FiltersT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector