AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
OutputDataConfig.h
1
6#pragma once
7#include <aws/comprehend/Comprehend_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Comprehend {
20namespace Model {
21
29 public:
30 AWS_COMPREHEND_API OutputDataConfig() = default;
31 AWS_COMPREHEND_API OutputDataConfig(Aws::Utils::Json::JsonView jsonValue);
33 AWS_COMPREHEND_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
49 inline const Aws::String& GetS3Uri() const { return m_s3Uri; }
50 inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; }
51 template <typename S3UriT = Aws::String>
52 void SetS3Uri(S3UriT&& value) {
53 m_s3UriHasBeenSet = true;
54 m_s3Uri = std::forward<S3UriT>(value);
55 }
56 template <typename S3UriT = Aws::String>
57 OutputDataConfig& WithS3Uri(S3UriT&& value) {
58 SetS3Uri(std::forward<S3UriT>(value));
59 return *this;
60 }
62
64
78 inline const Aws::String& GetKmsKeyId() const { return m_kmsKeyId; }
79 inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; }
80 template <typename KmsKeyIdT = Aws::String>
81 void SetKmsKeyId(KmsKeyIdT&& value) {
82 m_kmsKeyIdHasBeenSet = true;
83 m_kmsKeyId = std::forward<KmsKeyIdT>(value);
84 }
85 template <typename KmsKeyIdT = Aws::String>
86 OutputDataConfig& WithKmsKeyId(KmsKeyIdT&& value) {
87 SetKmsKeyId(std::forward<KmsKeyIdT>(value));
88 return *this;
89 }
91 private:
92 Aws::String m_s3Uri;
93
94 Aws::String m_kmsKeyId;
95 bool m_s3UriHasBeenSet = false;
96 bool m_kmsKeyIdHasBeenSet = false;
97};
98
99} // namespace Model
100} // namespace Comprehend
101} // namespace Aws
AWS_COMPREHEND_API OutputDataConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
OutputDataConfig & WithKmsKeyId(KmsKeyIdT &&value)
AWS_COMPREHEND_API OutputDataConfig(Aws::Utils::Json::JsonView jsonValue)
OutputDataConfig & WithS3Uri(S3UriT &&value)
AWS_COMPREHEND_API OutputDataConfig()=default
const Aws::String & GetKmsKeyId() const
AWS_COMPREHEND_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue