/** * 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 { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Glue { namespace Model { class GetCrawlerMetricsResult { public: AWS_GLUE_API GetCrawlerMetricsResult(); AWS_GLUE_API GetCrawlerMetricsResult(const Aws::AmazonWebServiceResult& result); AWS_GLUE_API GetCrawlerMetricsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of metrics for the specified crawler.

*/ inline const Aws::Vector& GetCrawlerMetricsList() const{ return m_crawlerMetricsList; } /** *

A list of metrics for the specified crawler.

*/ inline void SetCrawlerMetricsList(const Aws::Vector& value) { m_crawlerMetricsList = value; } /** *

A list of metrics for the specified crawler.

*/ inline void SetCrawlerMetricsList(Aws::Vector&& value) { m_crawlerMetricsList = std::move(value); } /** *

A list of metrics for the specified crawler.

*/ inline GetCrawlerMetricsResult& WithCrawlerMetricsList(const Aws::Vector& value) { SetCrawlerMetricsList(value); return *this;} /** *

A list of metrics for the specified crawler.

*/ inline GetCrawlerMetricsResult& WithCrawlerMetricsList(Aws::Vector&& value) { SetCrawlerMetricsList(std::move(value)); return *this;} /** *

A list of metrics for the specified crawler.

*/ inline GetCrawlerMetricsResult& AddCrawlerMetricsList(const CrawlerMetrics& value) { m_crawlerMetricsList.push_back(value); return *this; } /** *

A list of metrics for the specified crawler.

*/ inline GetCrawlerMetricsResult& AddCrawlerMetricsList(CrawlerMetrics&& value) { m_crawlerMetricsList.push_back(std::move(value)); return *this; } /** *

A continuation token, if the returned list does not contain the last metric * available.

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

A continuation token, if the returned list does not contain the last metric * available.

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

A continuation token, if the returned list does not contain the last metric * available.

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

A continuation token, if the returned list does not contain the last metric * available.

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

A continuation token, if the returned list does not contain the last metric * available.

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

A continuation token, if the returned list does not contain the last metric * available.

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

A continuation token, if the returned list does not contain the last metric * available.

*/ inline GetCrawlerMetricsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetCrawlerMetricsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetCrawlerMetricsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetCrawlerMetricsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_crawlerMetricsList; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace Glue } // namespace Aws