/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace ApplicationDiscoveryService { namespace Model { /** */ class DescribeContinuousExportsRequest : public ApplicationDiscoveryServiceRequest { public: AWS_APPLICATIONDISCOVERYSERVICE_API DescribeContinuousExportsRequest(); // 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 "DescribeContinuousExports"; } AWS_APPLICATIONDISCOVERYSERVICE_API Aws::String SerializePayload() const override; AWS_APPLICATIONDISCOVERYSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The unique IDs assigned to the exports.

*/ inline const Aws::Vector& GetExportIds() const{ return m_exportIds; } /** *

The unique IDs assigned to the exports.

*/ inline bool ExportIdsHasBeenSet() const { return m_exportIdsHasBeenSet; } /** *

The unique IDs assigned to the exports.

*/ inline void SetExportIds(const Aws::Vector& value) { m_exportIdsHasBeenSet = true; m_exportIds = value; } /** *

The unique IDs assigned to the exports.

*/ inline void SetExportIds(Aws::Vector&& value) { m_exportIdsHasBeenSet = true; m_exportIds = std::move(value); } /** *

The unique IDs assigned to the exports.

*/ inline DescribeContinuousExportsRequest& WithExportIds(const Aws::Vector& value) { SetExportIds(value); return *this;} /** *

The unique IDs assigned to the exports.

*/ inline DescribeContinuousExportsRequest& WithExportIds(Aws::Vector&& value) { SetExportIds(std::move(value)); return *this;} /** *

The unique IDs assigned to the exports.

*/ inline DescribeContinuousExportsRequest& AddExportIds(const Aws::String& value) { m_exportIdsHasBeenSet = true; m_exportIds.push_back(value); return *this; } /** *

The unique IDs assigned to the exports.

*/ inline DescribeContinuousExportsRequest& AddExportIds(Aws::String&& value) { m_exportIdsHasBeenSet = true; m_exportIds.push_back(std::move(value)); return *this; } /** *

The unique IDs assigned to the exports.

*/ inline DescribeContinuousExportsRequest& AddExportIds(const char* value) { m_exportIdsHasBeenSet = true; m_exportIds.push_back(value); return *this; } /** *

A number between 1 and 100 specifying the maximum number of continuous export * descriptions returned.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

A number between 1 and 100 specifying the maximum number of continuous export * descriptions returned.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

A number between 1 and 100 specifying the maximum number of continuous export * descriptions returned.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

A number between 1 and 100 specifying the maximum number of continuous export * descriptions returned.

*/ inline DescribeContinuousExportsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

The token from the previous call to DescribeExportTasks.

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

The token from the previous call to DescribeExportTasks.

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

The token from the previous call to DescribeExportTasks.

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

The token from the previous call to DescribeExportTasks.

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

The token from the previous call to DescribeExportTasks.

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

The token from the previous call to DescribeExportTasks.

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

The token from the previous call to DescribeExportTasks.

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

The token from the previous call to DescribeExportTasks.

*/ inline DescribeContinuousExportsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector m_exportIds; bool m_exportIdsHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace ApplicationDiscoveryService } // namespace Aws