AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeSavingsPlanRatesRequest.h
1
6#pragma once
7#include <aws/savingsplans/SavingsPlans_EXPORTS.h>
8#include <aws/savingsplans/SavingsPlansRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/savingsplans/model/SavingsPlanRateFilter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace SavingsPlans
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_SAVINGSPLANS_API DescribeSavingsPlanRatesRequest();
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 "DescribeSavingsPlanRates"; }
33
34 AWS_SAVINGSPLANS_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetSavingsPlanId() const{ return m_savingsPlanId; }
42 inline bool SavingsPlanIdHasBeenSet() const { return m_savingsPlanIdHasBeenSet; }
43 inline void SetSavingsPlanId(const Aws::String& value) { m_savingsPlanIdHasBeenSet = true; m_savingsPlanId = value; }
44 inline void SetSavingsPlanId(Aws::String&& value) { m_savingsPlanIdHasBeenSet = true; m_savingsPlanId = std::move(value); }
45 inline void SetSavingsPlanId(const char* value) { m_savingsPlanIdHasBeenSet = true; m_savingsPlanId.assign(value); }
47 inline DescribeSavingsPlanRatesRequest& WithSavingsPlanId(Aws::String&& value) { SetSavingsPlanId(std::move(value)); return *this;}
48 inline DescribeSavingsPlanRatesRequest& WithSavingsPlanId(const char* value) { SetSavingsPlanId(value); return *this;}
50
52
55 inline const Aws::Vector<SavingsPlanRateFilter>& GetFilters() const{ return m_filters; }
56 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
57 inline void SetFilters(const Aws::Vector<SavingsPlanRateFilter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
58 inline void SetFilters(Aws::Vector<SavingsPlanRateFilter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
61 inline DescribeSavingsPlanRatesRequest& AddFilters(const SavingsPlanRateFilter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
62 inline DescribeSavingsPlanRatesRequest& AddFilters(SavingsPlanRateFilter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
64
66
69 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
70 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
71 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
72 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
73 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
74 inline DescribeSavingsPlanRatesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
75 inline DescribeSavingsPlanRatesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
76 inline DescribeSavingsPlanRatesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
78
80
84 inline int GetMaxResults() const{ return m_maxResults; }
85 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
86 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
87 inline DescribeSavingsPlanRatesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
89 private:
90
91 Aws::String m_savingsPlanId;
92 bool m_savingsPlanIdHasBeenSet = false;
93
95 bool m_filtersHasBeenSet = false;
96
97 Aws::String m_nextToken;
98 bool m_nextTokenHasBeenSet = false;
99
100 int m_maxResults;
101 bool m_maxResultsHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace SavingsPlans
106} // namespace Aws
DescribeSavingsPlanRatesRequest & WithNextToken(const char *value)
DescribeSavingsPlanRatesRequest & WithFilters(const Aws::Vector< SavingsPlanRateFilter > &value)
DescribeSavingsPlanRatesRequest & WithFilters(Aws::Vector< SavingsPlanRateFilter > &&value)
void SetFilters(Aws::Vector< SavingsPlanRateFilter > &&value)
void SetFilters(const Aws::Vector< SavingsPlanRateFilter > &value)
DescribeSavingsPlanRatesRequest & WithNextToken(const Aws::String &value)
AWS_SAVINGSPLANS_API Aws::String SerializePayload() const override
const Aws::Vector< SavingsPlanRateFilter > & GetFilters() const
DescribeSavingsPlanRatesRequest & WithNextToken(Aws::String &&value)
DescribeSavingsPlanRatesRequest & WithSavingsPlanId(const char *value)
DescribeSavingsPlanRatesRequest & WithSavingsPlanId(const Aws::String &value)
DescribeSavingsPlanRatesRequest & AddFilters(SavingsPlanRateFilter &&value)
DescribeSavingsPlanRatesRequest & WithSavingsPlanId(Aws::String &&value)
DescribeSavingsPlanRatesRequest & AddFilters(const SavingsPlanRateFilter &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector