AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
EntityRecognizerDocuments.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:
36 AWS_COMPREHEND_API EntityRecognizerDocuments() = default;
39 AWS_COMPREHEND_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
48 inline const Aws::String& GetS3Uri() const { return m_s3Uri; }
49 inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; }
50 template<typename S3UriT = Aws::String>
51 void SetS3Uri(S3UriT&& value) { m_s3UriHasBeenSet = true; m_s3Uri = std::forward<S3UriT>(value); }
52 template<typename S3UriT = Aws::String>
53 EntityRecognizerDocuments& WithS3Uri(S3UriT&& value) { SetS3Uri(std::forward<S3UriT>(value)); return *this;}
55
57
62 inline const Aws::String& GetTestS3Uri() const { return m_testS3Uri; }
63 inline bool TestS3UriHasBeenSet() const { return m_testS3UriHasBeenSet; }
64 template<typename TestS3UriT = Aws::String>
65 void SetTestS3Uri(TestS3UriT&& value) { m_testS3UriHasBeenSet = true; m_testS3Uri = std::forward<TestS3UriT>(value); }
66 template<typename TestS3UriT = Aws::String>
67 EntityRecognizerDocuments& WithTestS3Uri(TestS3UriT&& value) { SetTestS3Uri(std::forward<TestS3UriT>(value)); return *this;}
69
71
79 inline InputFormat GetInputFormat() const { return m_inputFormat; }
80 inline bool InputFormatHasBeenSet() const { return m_inputFormatHasBeenSet; }
81 inline void SetInputFormat(InputFormat value) { m_inputFormatHasBeenSet = true; m_inputFormat = value; }
84 private:
85
86 Aws::String m_s3Uri;
87 bool m_s3UriHasBeenSet = false;
88
89 Aws::String m_testS3Uri;
90 bool m_testS3UriHasBeenSet = false;
91
92 InputFormat m_inputFormat{InputFormat::NOT_SET};
93 bool m_inputFormatHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace Comprehend
98} // namespace Aws
EntityRecognizerDocuments & WithInputFormat(InputFormat value)
AWS_COMPREHEND_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_COMPREHEND_API EntityRecognizerDocuments & operator=(Aws::Utils::Json::JsonView jsonValue)
EntityRecognizerDocuments & WithTestS3Uri(TestS3UriT &&value)
EntityRecognizerDocuments & WithS3Uri(S3UriT &&value)
AWS_COMPREHEND_API EntityRecognizerDocuments()=default
AWS_COMPREHEND_API EntityRecognizerDocuments(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue