1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/savingsplans/SavingsPlans_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSVector.h>
9 #include <aws/core/utils/memory/stl/AWSString.h>
10 #include <aws/savingsplans/model/SavingsPlanOfferingRate.h>
11 #include <utility>
12 
13 namespace Aws
14 {
15 template<typename RESULT_TYPE>
16 class AmazonWebServiceResult;
17 
18 namespace Utils
19 {
20 namespace Json
21 {
22   class JsonValue;
23 } // namespace Json
24 } // namespace Utils
25 namespace SavingsPlans
26 {
27 namespace Model
28 {
29   class AWS_SAVINGSPLANS_API DescribeSavingsPlansOfferingRatesResult
30   {
31   public:
32     DescribeSavingsPlansOfferingRatesResult();
33     DescribeSavingsPlansOfferingRatesResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
34     DescribeSavingsPlansOfferingRatesResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
35 
36 
37     /**
38      * <p>Information about the Savings Plans offering rates.</p>
39      */
GetSearchResults()40     inline const Aws::Vector<SavingsPlanOfferingRate>& GetSearchResults() const{ return m_searchResults; }
41 
42     /**
43      * <p>Information about the Savings Plans offering rates.</p>
44      */
SetSearchResults(const Aws::Vector<SavingsPlanOfferingRate> & value)45     inline void SetSearchResults(const Aws::Vector<SavingsPlanOfferingRate>& value) { m_searchResults = value; }
46 
47     /**
48      * <p>Information about the Savings Plans offering rates.</p>
49      */
SetSearchResults(Aws::Vector<SavingsPlanOfferingRate> && value)50     inline void SetSearchResults(Aws::Vector<SavingsPlanOfferingRate>&& value) { m_searchResults = std::move(value); }
51 
52     /**
53      * <p>Information about the Savings Plans offering rates.</p>
54      */
WithSearchResults(const Aws::Vector<SavingsPlanOfferingRate> & value)55     inline DescribeSavingsPlansOfferingRatesResult& WithSearchResults(const Aws::Vector<SavingsPlanOfferingRate>& value) { SetSearchResults(value); return *this;}
56 
57     /**
58      * <p>Information about the Savings Plans offering rates.</p>
59      */
WithSearchResults(Aws::Vector<SavingsPlanOfferingRate> && value)60     inline DescribeSavingsPlansOfferingRatesResult& WithSearchResults(Aws::Vector<SavingsPlanOfferingRate>&& value) { SetSearchResults(std::move(value)); return *this;}
61 
62     /**
63      * <p>Information about the Savings Plans offering rates.</p>
64      */
AddSearchResults(const SavingsPlanOfferingRate & value)65     inline DescribeSavingsPlansOfferingRatesResult& AddSearchResults(const SavingsPlanOfferingRate& value) { m_searchResults.push_back(value); return *this; }
66 
67     /**
68      * <p>Information about the Savings Plans offering rates.</p>
69      */
AddSearchResults(SavingsPlanOfferingRate && value)70     inline DescribeSavingsPlansOfferingRatesResult& AddSearchResults(SavingsPlanOfferingRate&& value) { m_searchResults.push_back(std::move(value)); return *this; }
71 
72 
73     /**
74      * <p>The token to use to retrieve the next page of results. This value is null
75      * when there are no more results to return.</p>
76      */
GetNextToken()77     inline const Aws::String& GetNextToken() const{ return m_nextToken; }
78 
79     /**
80      * <p>The token to use to retrieve the next page of results. This value is null
81      * when there are no more results to return.</p>
82      */
SetNextToken(const Aws::String & value)83     inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
84 
85     /**
86      * <p>The token to use to retrieve the next page of results. This value is null
87      * when there are no more results to return.</p>
88      */
SetNextToken(Aws::String && value)89     inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
90 
91     /**
92      * <p>The token to use to retrieve the next page of results. This value is null
93      * when there are no more results to return.</p>
94      */
SetNextToken(const char * value)95     inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
96 
97     /**
98      * <p>The token to use to retrieve the next page of results. This value is null
99      * when there are no more results to return.</p>
100      */
WithNextToken(const Aws::String & value)101     inline DescribeSavingsPlansOfferingRatesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
102 
103     /**
104      * <p>The token to use to retrieve the next page of results. This value is null
105      * when there are no more results to return.</p>
106      */
WithNextToken(Aws::String && value)107     inline DescribeSavingsPlansOfferingRatesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
108 
109     /**
110      * <p>The token to use to retrieve the next page of results. This value is null
111      * when there are no more results to return.</p>
112      */
WithNextToken(const char * value)113     inline DescribeSavingsPlansOfferingRatesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
114 
115   private:
116 
117     Aws::Vector<SavingsPlanOfferingRate> m_searchResults;
118 
119     Aws::String m_nextToken;
120   };
121 
122 } // namespace Model
123 } // namespace SavingsPlans
124 } // namespace Aws
125