AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListLicenseConfigurationsRequest.h
1
6#pragma once
7#include <aws/license-manager/LicenseManager_EXPORTS.h>
8#include <aws/license-manager/LicenseManagerRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/license-manager/model/Filter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace LicenseManager
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_LICENSEMANAGER_API ListLicenseConfigurationsRequest() = 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 "ListLicenseConfigurations"; }
33
34 AWS_LICENSEMANAGER_API Aws::String SerializePayload() const override;
35
36 AWS_LICENSEMANAGER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
37
38
40
43 inline const Aws::Vector<Aws::String>& GetLicenseConfigurationArns() const { return m_licenseConfigurationArns; }
44 inline bool LicenseConfigurationArnsHasBeenSet() const { return m_licenseConfigurationArnsHasBeenSet; }
45 template<typename LicenseConfigurationArnsT = Aws::Vector<Aws::String>>
46 void SetLicenseConfigurationArns(LicenseConfigurationArnsT&& value) { m_licenseConfigurationArnsHasBeenSet = true; m_licenseConfigurationArns = std::forward<LicenseConfigurationArnsT>(value); }
47 template<typename LicenseConfigurationArnsT = Aws::Vector<Aws::String>>
48 ListLicenseConfigurationsRequest& WithLicenseConfigurationArns(LicenseConfigurationArnsT&& value) { SetLicenseConfigurationArns(std::forward<LicenseConfigurationArnsT>(value)); return *this;}
49 template<typename LicenseConfigurationArnsT = Aws::String>
50 ListLicenseConfigurationsRequest& AddLicenseConfigurationArns(LicenseConfigurationArnsT&& value) { m_licenseConfigurationArnsHasBeenSet = true; m_licenseConfigurationArns.emplace_back(std::forward<LicenseConfigurationArnsT>(value)); return *this; }
52
54
57 inline int GetMaxResults() const { return m_maxResults; }
58 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
59 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
60 inline ListLicenseConfigurationsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
62
64
67 inline const Aws::String& GetNextToken() const { return m_nextToken; }
68 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
69 template<typename NextTokenT = Aws::String>
70 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
71 template<typename NextTokenT = Aws::String>
72 ListLicenseConfigurationsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
74
76
86 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
87 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
88 template<typename FiltersT = Aws::Vector<Filter>>
89 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
90 template<typename FiltersT = Aws::Vector<Filter>>
91 ListLicenseConfigurationsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
92 template<typename FiltersT = Filter>
93 ListLicenseConfigurationsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
95 private:
96
97 Aws::Vector<Aws::String> m_licenseConfigurationArns;
98 bool m_licenseConfigurationArnsHasBeenSet = false;
99
100 int m_maxResults{0};
101 bool m_maxResultsHasBeenSet = false;
102
103 Aws::String m_nextToken;
104 bool m_nextTokenHasBeenSet = false;
105
106 Aws::Vector<Filter> m_filters;
107 bool m_filtersHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace LicenseManager
112} // namespace Aws
AWS_LICENSEMANAGER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListLicenseConfigurationsRequest & WithFilters(FiltersT &&value)
AWS_LICENSEMANAGER_API ListLicenseConfigurationsRequest()=default
AWS_LICENSEMANAGER_API Aws::String SerializePayload() const override
ListLicenseConfigurationsRequest & WithLicenseConfigurationArns(LicenseConfigurationArnsT &&value)
ListLicenseConfigurationsRequest & AddLicenseConfigurationArns(LicenseConfigurationArnsT &&value)
ListLicenseConfigurationsRequest & AddFilters(FiltersT &&value)
ListLicenseConfigurationsRequest & WithNextToken(NextTokenT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector