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/config/ConfigService_EXPORTS.h> 8 #include <aws/core/utils/memory/stl/AWSVector.h> 9 #include <aws/core/utils/memory/stl/AWSString.h> 10 #include <aws/config/model/AggregatedSourceStatus.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 ConfigService 26 { 27 namespace Model 28 { 29 class AWS_CONFIGSERVICE_API DescribeConfigurationAggregatorSourcesStatusResult 30 { 31 public: 32 DescribeConfigurationAggregatorSourcesStatusResult(); 33 DescribeConfigurationAggregatorSourcesStatusResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); 34 DescribeConfigurationAggregatorSourcesStatusResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); 35 36 37 /** 38 * <p>Returns an AggregatedSourceStatus object. </p> 39 */ GetAggregatedSourceStatusList()40 inline const Aws::Vector<AggregatedSourceStatus>& GetAggregatedSourceStatusList() const{ return m_aggregatedSourceStatusList; } 41 42 /** 43 * <p>Returns an AggregatedSourceStatus object. </p> 44 */ SetAggregatedSourceStatusList(const Aws::Vector<AggregatedSourceStatus> & value)45 inline void SetAggregatedSourceStatusList(const Aws::Vector<AggregatedSourceStatus>& value) { m_aggregatedSourceStatusList = value; } 46 47 /** 48 * <p>Returns an AggregatedSourceStatus object. </p> 49 */ SetAggregatedSourceStatusList(Aws::Vector<AggregatedSourceStatus> && value)50 inline void SetAggregatedSourceStatusList(Aws::Vector<AggregatedSourceStatus>&& value) { m_aggregatedSourceStatusList = std::move(value); } 51 52 /** 53 * <p>Returns an AggregatedSourceStatus object. </p> 54 */ WithAggregatedSourceStatusList(const Aws::Vector<AggregatedSourceStatus> & value)55 inline DescribeConfigurationAggregatorSourcesStatusResult& WithAggregatedSourceStatusList(const Aws::Vector<AggregatedSourceStatus>& value) { SetAggregatedSourceStatusList(value); return *this;} 56 57 /** 58 * <p>Returns an AggregatedSourceStatus object. </p> 59 */ WithAggregatedSourceStatusList(Aws::Vector<AggregatedSourceStatus> && value)60 inline DescribeConfigurationAggregatorSourcesStatusResult& WithAggregatedSourceStatusList(Aws::Vector<AggregatedSourceStatus>&& value) { SetAggregatedSourceStatusList(std::move(value)); return *this;} 61 62 /** 63 * <p>Returns an AggregatedSourceStatus object. </p> 64 */ AddAggregatedSourceStatusList(const AggregatedSourceStatus & value)65 inline DescribeConfigurationAggregatorSourcesStatusResult& AddAggregatedSourceStatusList(const AggregatedSourceStatus& value) { m_aggregatedSourceStatusList.push_back(value); return *this; } 66 67 /** 68 * <p>Returns an AggregatedSourceStatus object. </p> 69 */ AddAggregatedSourceStatusList(AggregatedSourceStatus && value)70 inline DescribeConfigurationAggregatorSourcesStatusResult& AddAggregatedSourceStatusList(AggregatedSourceStatus&& value) { m_aggregatedSourceStatusList.push_back(std::move(value)); return *this; } 71 72 73 /** 74 * <p>The <code>nextToken</code> string returned on a previous page that you use to 75 * get the next page of results in a paginated response.</p> 76 */ GetNextToken()77 inline const Aws::String& GetNextToken() const{ return m_nextToken; } 78 79 /** 80 * <p>The <code>nextToken</code> string returned on a previous page that you use to 81 * get the next page of results in a paginated response.</p> 82 */ SetNextToken(const Aws::String & value)83 inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } 84 85 /** 86 * <p>The <code>nextToken</code> string returned on a previous page that you use to 87 * get the next page of results in a paginated response.</p> 88 */ SetNextToken(Aws::String && value)89 inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } 90 91 /** 92 * <p>The <code>nextToken</code> string returned on a previous page that you use to 93 * get the next page of results in a paginated response.</p> 94 */ SetNextToken(const char * value)95 inline void SetNextToken(const char* value) { m_nextToken.assign(value); } 96 97 /** 98 * <p>The <code>nextToken</code> string returned on a previous page that you use to 99 * get the next page of results in a paginated response.</p> 100 */ WithNextToken(const Aws::String & value)101 inline DescribeConfigurationAggregatorSourcesStatusResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} 102 103 /** 104 * <p>The <code>nextToken</code> string returned on a previous page that you use to 105 * get the next page of results in a paginated response.</p> 106 */ WithNextToken(Aws::String && value)107 inline DescribeConfigurationAggregatorSourcesStatusResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} 108 109 /** 110 * <p>The <code>nextToken</code> string returned on a previous page that you use to 111 * get the next page of results in a paginated response.</p> 112 */ WithNextToken(const char * value)113 inline DescribeConfigurationAggregatorSourcesStatusResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} 114 115 private: 116 117 Aws::Vector<AggregatedSourceStatus> m_aggregatedSourceStatusList; 118 119 Aws::String m_nextToken; 120 }; 121 122 } // namespace Model 123 } // namespace ConfigService 124 } // namespace Aws 125