AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeLaunchTemplatesRequest.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:
26 AWS_EC2_API DescribeLaunchTemplatesRequest() = 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 "DescribeLaunchTemplates"; }
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
48 inline bool GetDryRun() const { return m_dryRun; }
49 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
50 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
51 inline DescribeLaunchTemplatesRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
53
55
58 inline const Aws::Vector<Aws::String>& GetLaunchTemplateIds() const { return m_launchTemplateIds; }
59 inline bool LaunchTemplateIdsHasBeenSet() const { return m_launchTemplateIdsHasBeenSet; }
60 template<typename LaunchTemplateIdsT = Aws::Vector<Aws::String>>
61 void SetLaunchTemplateIds(LaunchTemplateIdsT&& value) { m_launchTemplateIdsHasBeenSet = true; m_launchTemplateIds = std::forward<LaunchTemplateIdsT>(value); }
62 template<typename LaunchTemplateIdsT = Aws::Vector<Aws::String>>
63 DescribeLaunchTemplatesRequest& WithLaunchTemplateIds(LaunchTemplateIdsT&& value) { SetLaunchTemplateIds(std::forward<LaunchTemplateIdsT>(value)); return *this;}
64 template<typename LaunchTemplateIdsT = Aws::String>
65 DescribeLaunchTemplatesRequest& AddLaunchTemplateIds(LaunchTemplateIdsT&& value) { m_launchTemplateIdsHasBeenSet = true; m_launchTemplateIds.emplace_back(std::forward<LaunchTemplateIdsT>(value)); return *this; }
67
69
72 inline const Aws::Vector<Aws::String>& GetLaunchTemplateNames() const { return m_launchTemplateNames; }
73 inline bool LaunchTemplateNamesHasBeenSet() const { return m_launchTemplateNamesHasBeenSet; }
74 template<typename LaunchTemplateNamesT = Aws::Vector<Aws::String>>
75 void SetLaunchTemplateNames(LaunchTemplateNamesT&& value) { m_launchTemplateNamesHasBeenSet = true; m_launchTemplateNames = std::forward<LaunchTemplateNamesT>(value); }
76 template<typename LaunchTemplateNamesT = Aws::Vector<Aws::String>>
77 DescribeLaunchTemplatesRequest& WithLaunchTemplateNames(LaunchTemplateNamesT&& value) { SetLaunchTemplateNames(std::forward<LaunchTemplateNamesT>(value)); return *this;}
78 template<typename LaunchTemplateNamesT = Aws::String>
79 DescribeLaunchTemplatesRequest& AddLaunchTemplateNames(LaunchTemplateNamesT&& value) { m_launchTemplateNamesHasBeenSet = true; m_launchTemplateNames.emplace_back(std::forward<LaunchTemplateNamesT>(value)); return *this; }
81
83
96 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
97 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
98 template<typename FiltersT = Aws::Vector<Filter>>
99 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
100 template<typename FiltersT = Aws::Vector<Filter>>
101 DescribeLaunchTemplatesRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
102 template<typename FiltersT = Filter>
103 DescribeLaunchTemplatesRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
105
107
110 inline const Aws::String& GetNextToken() const { return m_nextToken; }
111 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
112 template<typename NextTokenT = Aws::String>
113 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
114 template<typename NextTokenT = Aws::String>
115 DescribeLaunchTemplatesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
117
119
124 inline int GetMaxResults() const { return m_maxResults; }
125 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
126 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
127 inline DescribeLaunchTemplatesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
129 private:
130
131 bool m_dryRun{false};
132 bool m_dryRunHasBeenSet = false;
133
134 Aws::Vector<Aws::String> m_launchTemplateIds;
135 bool m_launchTemplateIdsHasBeenSet = false;
136
137 Aws::Vector<Aws::String> m_launchTemplateNames;
138 bool m_launchTemplateNamesHasBeenSet = false;
139
140 Aws::Vector<Filter> m_filters;
141 bool m_filtersHasBeenSet = false;
142
143 Aws::String m_nextToken;
144 bool m_nextTokenHasBeenSet = false;
145
146 int m_maxResults{0};
147 bool m_maxResultsHasBeenSet = false;
148 };
149
150} // namespace Model
151} // namespace EC2
152} // namespace Aws
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeLaunchTemplatesRequest & AddLaunchTemplateNames(LaunchTemplateNamesT &&value)
DescribeLaunchTemplatesRequest & WithMaxResults(int value)
DescribeLaunchTemplatesRequest & WithLaunchTemplateIds(LaunchTemplateIdsT &&value)
const Aws::Vector< Aws::String > & GetLaunchTemplateIds() const
const Aws::Vector< Aws::String > & GetLaunchTemplateNames() const
DescribeLaunchTemplatesRequest & WithFilters(FiltersT &&value)
virtual const char * GetServiceRequestName() const override
DescribeLaunchTemplatesRequest & WithNextToken(NextTokenT &&value)
DescribeLaunchTemplatesRequest & AddFilters(FiltersT &&value)
DescribeLaunchTemplatesRequest & WithLaunchTemplateNames(LaunchTemplateNamesT &&value)
DescribeLaunchTemplatesRequest & WithDryRun(bool value)
DescribeLaunchTemplatesRequest & AddLaunchTemplateIds(LaunchTemplateIdsT &&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