AWS SDK for C++

AWS SDK for C++ Version 1.11.644

Loading...
Searching...
No Matches
DescribeImageReferencesRequest.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/ResourceTypeRequest.h>
12#include <utility>
13
14namespace Aws
15{
16namespace EC2
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_EC2_API DescribeImageReferencesRequest() = 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 "DescribeImageReferences"; }
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>& GetImageIds() const { return m_imageIds; }
46 inline bool ImageIdsHasBeenSet() const { return m_imageIdsHasBeenSet; }
47 template<typename ImageIdsT = Aws::Vector<Aws::String>>
48 void SetImageIds(ImageIdsT&& value) { m_imageIdsHasBeenSet = true; m_imageIds = std::forward<ImageIdsT>(value); }
49 template<typename ImageIdsT = Aws::Vector<Aws::String>>
50 DescribeImageReferencesRequest& WithImageIds(ImageIdsT&& value) { SetImageIds(std::forward<ImageIdsT>(value)); return *this;}
51 template<typename ImageIdsT = Aws::String>
52 DescribeImageReferencesRequest& AddImageIds(ImageIdsT&& value) { m_imageIdsHasBeenSet = true; m_imageIds.emplace_back(std::forward<ImageIdsT>(value)); return *this; }
54
56
70 inline bool GetIncludeAllResourceTypes() const { return m_includeAllResourceTypes; }
71 inline bool IncludeAllResourceTypesHasBeenSet() const { return m_includeAllResourceTypesHasBeenSet; }
72 inline void SetIncludeAllResourceTypes(bool value) { m_includeAllResourceTypesHasBeenSet = true; m_includeAllResourceTypes = value; }
75
77
82 inline const Aws::Vector<ResourceTypeRequest>& GetResourceTypes() const { return m_resourceTypes; }
83 inline bool ResourceTypesHasBeenSet() const { return m_resourceTypesHasBeenSet; }
84 template<typename ResourceTypesT = Aws::Vector<ResourceTypeRequest>>
85 void SetResourceTypes(ResourceTypesT&& value) { m_resourceTypesHasBeenSet = true; m_resourceTypes = std::forward<ResourceTypesT>(value); }
86 template<typename ResourceTypesT = Aws::Vector<ResourceTypeRequest>>
87 DescribeImageReferencesRequest& WithResourceTypes(ResourceTypesT&& value) { SetResourceTypes(std::forward<ResourceTypesT>(value)); return *this;}
88 template<typename ResourceTypesT = ResourceTypeRequest>
89 DescribeImageReferencesRequest& AddResourceTypes(ResourceTypesT&& value) { m_resourceTypesHasBeenSet = true; m_resourceTypes.emplace_back(std::forward<ResourceTypesT>(value)); return *this; }
91
93
97 inline const Aws::String& GetNextToken() const { return m_nextToken; }
98 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
99 template<typename NextTokenT = Aws::String>
100 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
101 template<typename NextTokenT = Aws::String>
102 DescribeImageReferencesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
104
106
112 inline bool GetDryRun() const { return m_dryRun; }
113 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
114 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
115 inline DescribeImageReferencesRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
117
119
126 inline int GetMaxResults() const { return m_maxResults; }
127 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
128 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
129 inline DescribeImageReferencesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
131 private:
132
133 Aws::Vector<Aws::String> m_imageIds;
134 bool m_imageIdsHasBeenSet = false;
135
136 bool m_includeAllResourceTypes{false};
137 bool m_includeAllResourceTypesHasBeenSet = false;
138
139 Aws::Vector<ResourceTypeRequest> m_resourceTypes;
140 bool m_resourceTypesHasBeenSet = false;
141
142 Aws::String m_nextToken;
143 bool m_nextTokenHasBeenSet = false;
144
145 bool m_dryRun{false};
146 bool m_dryRunHasBeenSet = false;
147
148 int m_maxResults{0};
149 bool m_maxResultsHasBeenSet = false;
150 };
151
152} // namespace Model
153} // namespace EC2
154} // namespace Aws
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeImageReferencesRequest & WithIncludeAllResourceTypes(bool value)
const Aws::Vector< ResourceTypeRequest > & GetResourceTypes() const
DescribeImageReferencesRequest & WithDryRun(bool value)
virtual const char * GetServiceRequestName() const override
DescribeImageReferencesRequest & WithImageIds(ImageIdsT &&value)
DescribeImageReferencesRequest & WithNextToken(NextTokenT &&value)
DescribeImageReferencesRequest & WithResourceTypes(ResourceTypesT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
DescribeImageReferencesRequest & AddResourceTypes(ResourceTypesT &&value)
DescribeImageReferencesRequest & AddImageIds(ImageIdsT &&value)
const Aws::Vector< Aws::String > & GetImageIds() const
DescribeImageReferencesRequest & WithMaxResults(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector