/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace ConfigService { namespace Model { /** */ class DescribeConfigurationAggregatorSourcesStatusRequest : public ConfigServiceRequest { public: AWS_CONFIGSERVICE_API DescribeConfigurationAggregatorSourcesStatusRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeConfigurationAggregatorSourcesStatus"; } AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override; AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the configuration aggregator.

*/ inline const Aws::String& GetConfigurationAggregatorName() const{ return m_configurationAggregatorName; } /** *

The name of the configuration aggregator.

*/ inline bool ConfigurationAggregatorNameHasBeenSet() const { return m_configurationAggregatorNameHasBeenSet; } /** *

The name of the configuration aggregator.

*/ inline void SetConfigurationAggregatorName(const Aws::String& value) { m_configurationAggregatorNameHasBeenSet = true; m_configurationAggregatorName = value; } /** *

The name of the configuration aggregator.

*/ inline void SetConfigurationAggregatorName(Aws::String&& value) { m_configurationAggregatorNameHasBeenSet = true; m_configurationAggregatorName = std::move(value); } /** *

The name of the configuration aggregator.

*/ inline void SetConfigurationAggregatorName(const char* value) { m_configurationAggregatorNameHasBeenSet = true; m_configurationAggregatorName.assign(value); } /** *

The name of the configuration aggregator.

*/ inline DescribeConfigurationAggregatorSourcesStatusRequest& WithConfigurationAggregatorName(const Aws::String& value) { SetConfigurationAggregatorName(value); return *this;} /** *

The name of the configuration aggregator.

*/ inline DescribeConfigurationAggregatorSourcesStatusRequest& WithConfigurationAggregatorName(Aws::String&& value) { SetConfigurationAggregatorName(std::move(value)); return *this;} /** *

The name of the configuration aggregator.

*/ inline DescribeConfigurationAggregatorSourcesStatusRequest& WithConfigurationAggregatorName(const char* value) { SetConfigurationAggregatorName(value); return *this;} /** *

Filters the status type.

  • Valid value FAILED indicates errors * while moving data.

  • Valid value SUCCEEDED indicates the data * was successfully moved.

  • Valid value OUTDATED indicates the * data is not the most recent.

*/ inline const Aws::Vector& GetUpdateStatus() const{ return m_updateStatus; } /** *

Filters the status type.

  • Valid value FAILED indicates errors * while moving data.

  • Valid value SUCCEEDED indicates the data * was successfully moved.

  • Valid value OUTDATED indicates the * data is not the most recent.

*/ inline bool UpdateStatusHasBeenSet() const { return m_updateStatusHasBeenSet; } /** *

Filters the status type.

  • Valid value FAILED indicates errors * while moving data.

  • Valid value SUCCEEDED indicates the data * was successfully moved.

  • Valid value OUTDATED indicates the * data is not the most recent.

*/ inline void SetUpdateStatus(const Aws::Vector& value) { m_updateStatusHasBeenSet = true; m_updateStatus = value; } /** *

Filters the status type.

  • Valid value FAILED indicates errors * while moving data.

  • Valid value SUCCEEDED indicates the data * was successfully moved.

  • Valid value OUTDATED indicates the * data is not the most recent.

*/ inline void SetUpdateStatus(Aws::Vector&& value) { m_updateStatusHasBeenSet = true; m_updateStatus = std::move(value); } /** *

Filters the status type.

  • Valid value FAILED indicates errors * while moving data.

  • Valid value SUCCEEDED indicates the data * was successfully moved.

  • Valid value OUTDATED indicates the * data is not the most recent.

*/ inline DescribeConfigurationAggregatorSourcesStatusRequest& WithUpdateStatus(const Aws::Vector& value) { SetUpdateStatus(value); return *this;} /** *

Filters the status type.

  • Valid value FAILED indicates errors * while moving data.

  • Valid value SUCCEEDED indicates the data * was successfully moved.

  • Valid value OUTDATED indicates the * data is not the most recent.

*/ inline DescribeConfigurationAggregatorSourcesStatusRequest& WithUpdateStatus(Aws::Vector&& value) { SetUpdateStatus(std::move(value)); return *this;} /** *

Filters the status type.

  • Valid value FAILED indicates errors * while moving data.

  • Valid value SUCCEEDED indicates the data * was successfully moved.

  • Valid value OUTDATED indicates the * data is not the most recent.

*/ inline DescribeConfigurationAggregatorSourcesStatusRequest& AddUpdateStatus(const AggregatedSourceStatusType& value) { m_updateStatusHasBeenSet = true; m_updateStatus.push_back(value); return *this; } /** *

Filters the status type.

  • Valid value FAILED indicates errors * while moving data.

  • Valid value SUCCEEDED indicates the data * was successfully moved.

  • Valid value OUTDATED indicates the * data is not the most recent.

*/ inline DescribeConfigurationAggregatorSourcesStatusRequest& AddUpdateStatus(AggregatedSourceStatusType&& value) { m_updateStatusHasBeenSet = true; m_updateStatus.push_back(std::move(value)); return *this; } /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline DescribeConfigurationAggregatorSourcesStatusRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline DescribeConfigurationAggregatorSourcesStatusRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline DescribeConfigurationAggregatorSourcesStatusRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The maximum number of AggregatorSourceStatus returned on each page. The * default is maximum. If you specify 0, Config uses the default.

*/ inline int GetLimit() const{ return m_limit; } /** *

The maximum number of AggregatorSourceStatus returned on each page. The * default is maximum. If you specify 0, Config uses the default.

*/ inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; } /** *

The maximum number of AggregatorSourceStatus returned on each page. The * default is maximum. If you specify 0, Config uses the default.

*/ inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; } /** *

The maximum number of AggregatorSourceStatus returned on each page. The * default is maximum. If you specify 0, Config uses the default.

*/ inline DescribeConfigurationAggregatorSourcesStatusRequest& WithLimit(int value) { SetLimit(value); return *this;} private: Aws::String m_configurationAggregatorName; bool m_configurationAggregatorNameHasBeenSet = false; Aws::Vector m_updateStatus; bool m_updateStatusHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_limit; bool m_limitHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws