AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListLicensesRequest.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 ListLicensesRequest();
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 "ListLicenses"; }
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>& GetLicenseArns() const{ return m_licenseArns; }
44 inline bool LicenseArnsHasBeenSet() const { return m_licenseArnsHasBeenSet; }
45 inline void SetLicenseArns(const Aws::Vector<Aws::String>& value) { m_licenseArnsHasBeenSet = true; m_licenseArns = value; }
46 inline void SetLicenseArns(Aws::Vector<Aws::String>&& value) { m_licenseArnsHasBeenSet = true; m_licenseArns = std::move(value); }
47 inline ListLicensesRequest& WithLicenseArns(const Aws::Vector<Aws::String>& value) { SetLicenseArns(value); return *this;}
48 inline ListLicensesRequest& WithLicenseArns(Aws::Vector<Aws::String>&& value) { SetLicenseArns(std::move(value)); return *this;}
49 inline ListLicensesRequest& AddLicenseArns(const Aws::String& value) { m_licenseArnsHasBeenSet = true; m_licenseArns.push_back(value); return *this; }
50 inline ListLicensesRequest& AddLicenseArns(Aws::String&& value) { m_licenseArnsHasBeenSet = true; m_licenseArns.push_back(std::move(value)); return *this; }
51 inline ListLicensesRequest& AddLicenseArns(const char* value) { m_licenseArnsHasBeenSet = true; m_licenseArns.push_back(value); return *this; }
53
55
61 inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; }
62 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
63 inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
64 inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
65 inline ListLicensesRequest& WithFilters(const Aws::Vector<Filter>& value) { SetFilters(value); return *this;}
66 inline ListLicensesRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(std::move(value)); return *this;}
67 inline ListLicensesRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
68 inline ListLicensesRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
70
72
75 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
76 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
77 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
78 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
79 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
80 inline ListLicensesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
81 inline ListLicensesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
82 inline ListLicensesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
84
86
89 inline int GetMaxResults() const{ return m_maxResults; }
90 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
91 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
92 inline ListLicensesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
94 private:
95
96 Aws::Vector<Aws::String> m_licenseArns;
97 bool m_licenseArnsHasBeenSet = false;
98
99 Aws::Vector<Filter> m_filters;
100 bool m_filtersHasBeenSet = false;
101
102 Aws::String m_nextToken;
103 bool m_nextTokenHasBeenSet = false;
104
105 int m_maxResults;
106 bool m_maxResultsHasBeenSet = false;
107 };
108
109} // namespace Model
110} // namespace LicenseManager
111} // namespace Aws
ListLicensesRequest & WithFilters(const Aws::Vector< Filter > &value)
ListLicensesRequest & WithLicenseArns(Aws::Vector< Aws::String > &&value)
ListLicensesRequest & AddLicenseArns(Aws::String &&value)
AWS_LICENSEMANAGER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListLicensesRequest & WithNextToken(const Aws::String &value)
ListLicensesRequest & WithFilters(Aws::Vector< Filter > &&value)
ListLicensesRequest & WithLicenseArns(const Aws::Vector< Aws::String > &value)
ListLicensesRequest & AddLicenseArns(const char *value)
ListLicensesRequest & WithMaxResults(int value)
void SetLicenseArns(const Aws::Vector< Aws::String > &value)
ListLicensesRequest & WithNextToken(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
ListLicensesRequest & WithNextToken(const char *value)
void SetFilters(const Aws::Vector< Filter > &value)
void SetLicenseArns(Aws::Vector< Aws::String > &&value)
ListLicensesRequest & AddLicenseArns(const Aws::String &value)
void SetFilters(Aws::Vector< Filter > &&value)
AWS_LICENSEMANAGER_API Aws::String SerializePayload() const override
const Aws::Vector< Aws::String > & GetLicenseArns() const
ListLicensesRequest & AddFilters(Filter &&value)
ListLicensesRequest & AddFilters(const Filter &value)
const Aws::Vector< Filter > & GetFilters() const
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