AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DatasetEntityRecognizerDocuments.h
1
6#pragma once
7#include <aws/comprehend/Comprehend_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/comprehend/model/InputFormat.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 Comprehend
23{
24namespace Model
25{
26
34 {
35 public:
39 AWS_COMPREHEND_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetS3Uri() const{ return m_s3Uri; }
48 inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; }
49 inline void SetS3Uri(const Aws::String& value) { m_s3UriHasBeenSet = true; m_s3Uri = value; }
50 inline void SetS3Uri(Aws::String&& value) { m_s3UriHasBeenSet = true; m_s3Uri = std::move(value); }
51 inline void SetS3Uri(const char* value) { m_s3UriHasBeenSet = true; m_s3Uri.assign(value); }
52 inline DatasetEntityRecognizerDocuments& WithS3Uri(const Aws::String& value) { SetS3Uri(value); return *this;}
53 inline DatasetEntityRecognizerDocuments& WithS3Uri(Aws::String&& value) { SetS3Uri(std::move(value)); return *this;}
54 inline DatasetEntityRecognizerDocuments& WithS3Uri(const char* value) { SetS3Uri(value); return *this;}
56
58
66 inline const InputFormat& GetInputFormat() const{ return m_inputFormat; }
67 inline bool InputFormatHasBeenSet() const { return m_inputFormatHasBeenSet; }
68 inline void SetInputFormat(const InputFormat& value) { m_inputFormatHasBeenSet = true; m_inputFormat = value; }
69 inline void SetInputFormat(InputFormat&& value) { m_inputFormatHasBeenSet = true; m_inputFormat = std::move(value); }
70 inline DatasetEntityRecognizerDocuments& WithInputFormat(const InputFormat& value) { SetInputFormat(value); return *this;}
71 inline DatasetEntityRecognizerDocuments& WithInputFormat(InputFormat&& value) { SetInputFormat(std::move(value)); return *this;}
73 private:
74
75 Aws::String m_s3Uri;
76 bool m_s3UriHasBeenSet = false;
77
78 InputFormat m_inputFormat;
79 bool m_inputFormatHasBeenSet = false;
80 };
81
82} // namespace Model
83} // namespace Comprehend
84} // namespace Aws
AWS_COMPREHEND_API DatasetEntityRecognizerDocuments & operator=(Aws::Utils::Json::JsonView jsonValue)
DatasetEntityRecognizerDocuments & WithInputFormat(InputFormat &&value)
DatasetEntityRecognizerDocuments & WithInputFormat(const InputFormat &value)
DatasetEntityRecognizerDocuments & WithS3Uri(const char *value)
DatasetEntityRecognizerDocuments & WithS3Uri(const Aws::String &value)
DatasetEntityRecognizerDocuments & WithS3Uri(Aws::String &&value)
AWS_COMPREHEND_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_COMPREHEND_API DatasetEntityRecognizerDocuments(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue