AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CrawlerNodeDetails.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/glue/model/Crawl.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace Glue
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_GLUE_API CrawlerNodeDetails();
40
41
43
46 inline const Aws::Vector<Crawl>& GetCrawls() const{ return m_crawls; }
47 inline bool CrawlsHasBeenSet() const { return m_crawlsHasBeenSet; }
48 inline void SetCrawls(const Aws::Vector<Crawl>& value) { m_crawlsHasBeenSet = true; m_crawls = value; }
49 inline void SetCrawls(Aws::Vector<Crawl>&& value) { m_crawlsHasBeenSet = true; m_crawls = std::move(value); }
50 inline CrawlerNodeDetails& WithCrawls(const Aws::Vector<Crawl>& value) { SetCrawls(value); return *this;}
51 inline CrawlerNodeDetails& WithCrawls(Aws::Vector<Crawl>&& value) { SetCrawls(std::move(value)); return *this;}
52 inline CrawlerNodeDetails& AddCrawls(const Crawl& value) { m_crawlsHasBeenSet = true; m_crawls.push_back(value); return *this; }
53 inline CrawlerNodeDetails& AddCrawls(Crawl&& value) { m_crawlsHasBeenSet = true; m_crawls.push_back(std::move(value)); return *this; }
55 private:
56
57 Aws::Vector<Crawl> m_crawls;
58 bool m_crawlsHasBeenSet = false;
59 };
60
61} // namespace Model
62} // namespace Glue
63} // namespace Aws
AWS_GLUE_API CrawlerNodeDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Crawl > & GetCrawls() const
AWS_GLUE_API CrawlerNodeDetails(Aws::Utils::Json::JsonView jsonValue)
void SetCrawls(const Aws::Vector< Crawl > &value)
CrawlerNodeDetails & AddCrawls(const Crawl &value)
CrawlerNodeDetails & WithCrawls(Aws::Vector< Crawl > &&value)
CrawlerNodeDetails & AddCrawls(Crawl &&value)
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
void SetCrawls(Aws::Vector< Crawl > &&value)
CrawlerNodeDetails & WithCrawls(const Aws::Vector< Crawl > &value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue