/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Glue { namespace Model { class AWS_GLUE_API GetCrawlerResult { public: GetCrawlerResult(); GetCrawlerResult(const Aws::AmazonWebServiceResult& result); GetCrawlerResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The metadata for the specified crawler.

*/ inline const Crawler& GetCrawler() const{ return m_crawler; } /** *

The metadata for the specified crawler.

*/ inline void SetCrawler(const Crawler& value) { m_crawler = value; } /** *

The metadata for the specified crawler.

*/ inline void SetCrawler(Crawler&& value) { m_crawler = std::move(value); } /** *

The metadata for the specified crawler.

*/ inline GetCrawlerResult& WithCrawler(const Crawler& value) { SetCrawler(value); return *this;} /** *

The metadata for the specified crawler.

*/ inline GetCrawlerResult& WithCrawler(Crawler&& value) { SetCrawler(std::move(value)); return *this;} private: Crawler m_crawler; }; } // namespace Model } // namespace Glue } // namespace Aws