AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeTransitGatewayPolicyTablesRequest.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 "DescribeTransitGatewayPolicyTables"; }
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>& GetTransitGatewayPolicyTableIds() const { return m_transitGatewayPolicyTableIds; }
46 inline bool TransitGatewayPolicyTableIdsHasBeenSet() const { return m_transitGatewayPolicyTableIdsHasBeenSet; }
47 template<typename TransitGatewayPolicyTableIdsT = Aws::Vector<Aws::String>>
48 void SetTransitGatewayPolicyTableIds(TransitGatewayPolicyTableIdsT&& value) { m_transitGatewayPolicyTableIdsHasBeenSet = true; m_transitGatewayPolicyTableIds = std::forward<TransitGatewayPolicyTableIdsT>(value); }
49 template<typename TransitGatewayPolicyTableIdsT = Aws::Vector<Aws::String>>
50 DescribeTransitGatewayPolicyTablesRequest& WithTransitGatewayPolicyTableIds(TransitGatewayPolicyTableIdsT&& value) { SetTransitGatewayPolicyTableIds(std::forward<TransitGatewayPolicyTableIdsT>(value)); return *this;}
51 template<typename TransitGatewayPolicyTableIdsT = Aws::String>
52 DescribeTransitGatewayPolicyTablesRequest& AddTransitGatewayPolicyTableIds(TransitGatewayPolicyTableIdsT&& value) { m_transitGatewayPolicyTableIdsHasBeenSet = true; m_transitGatewayPolicyTableIds.emplace_back(std::forward<TransitGatewayPolicyTableIdsT>(value)); return *this; }
54
56
59 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
60 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
61 template<typename FiltersT = Aws::Vector<Filter>>
62 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
63 template<typename FiltersT = Aws::Vector<Filter>>
64 DescribeTransitGatewayPolicyTablesRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
65 template<typename FiltersT = Filter>
66 DescribeTransitGatewayPolicyTablesRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
68
70
75 inline int GetMaxResults() const { return m_maxResults; }
76 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
77 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
80
82
85 inline const Aws::String& GetNextToken() const { return m_nextToken; }
86 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
87 template<typename NextTokenT = Aws::String>
88 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
89 template<typename NextTokenT = Aws::String>
90 DescribeTransitGatewayPolicyTablesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
92
94
100 inline bool GetDryRun() const { return m_dryRun; }
101 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
102 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
103 inline DescribeTransitGatewayPolicyTablesRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
105 private:
106
107 Aws::Vector<Aws::String> m_transitGatewayPolicyTableIds;
108 bool m_transitGatewayPolicyTableIdsHasBeenSet = false;
109
110 Aws::Vector<Filter> m_filters;
111 bool m_filtersHasBeenSet = false;
112
113 int m_maxResults{0};
114 bool m_maxResultsHasBeenSet = false;
115
116 Aws::String m_nextToken;
117 bool m_nextTokenHasBeenSet = false;
118
119 bool m_dryRun{false};
120 bool m_dryRunHasBeenSet = false;
121 };
122
123} // namespace Model
124} // namespace EC2
125} // namespace Aws
DescribeTransitGatewayPolicyTablesRequest & WithMaxResults(int value)
DescribeTransitGatewayPolicyTablesRequest & AddFilters(FiltersT &&value)
DescribeTransitGatewayPolicyTablesRequest & WithTransitGatewayPolicyTableIds(TransitGatewayPolicyTableIdsT &&value)
DescribeTransitGatewayPolicyTablesRequest & AddTransitGatewayPolicyTableIds(TransitGatewayPolicyTableIdsT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
DescribeTransitGatewayPolicyTablesRequest & WithFilters(FiltersT &&value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeTransitGatewayPolicyTablesRequest & WithNextToken(NextTokenT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector