AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
OutputDataConfig.h
1
6#pragma once
7#include <aws/translate/Translate_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/translate/model/EncryptionKey.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 Translate
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_TRANSLATE_API OutputDataConfig();
37 AWS_TRANSLATE_API OutputDataConfig(Aws::Utils::Json::JsonView jsonValue);
39 AWS_TRANSLATE_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 OutputDataConfig& WithS3Uri(const Aws::String& value) { SetS3Uri(value); return *this;}
53 inline OutputDataConfig& WithS3Uri(Aws::String&& value) { SetS3Uri(std::move(value)); return *this;}
54 inline OutputDataConfig& WithS3Uri(const char* value) { SetS3Uri(value); return *this;}
56
58
59 inline const EncryptionKey& GetEncryptionKey() const{ return m_encryptionKey; }
60 inline bool EncryptionKeyHasBeenSet() const { return m_encryptionKeyHasBeenSet; }
61 inline void SetEncryptionKey(const EncryptionKey& value) { m_encryptionKeyHasBeenSet = true; m_encryptionKey = value; }
62 inline void SetEncryptionKey(EncryptionKey&& value) { m_encryptionKeyHasBeenSet = true; m_encryptionKey = std::move(value); }
63 inline OutputDataConfig& WithEncryptionKey(const EncryptionKey& value) { SetEncryptionKey(value); return *this;}
64 inline OutputDataConfig& WithEncryptionKey(EncryptionKey&& value) { SetEncryptionKey(std::move(value)); return *this;}
66 private:
67
68 Aws::String m_s3Uri;
69 bool m_s3UriHasBeenSet = false;
70
71 EncryptionKey m_encryptionKey;
72 bool m_encryptionKeyHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace Translate
77} // namespace Aws
const EncryptionKey & GetEncryptionKey() const
OutputDataConfig & WithEncryptionKey(const EncryptionKey &value)
AWS_TRANSLATE_API Aws::Utils::Json::JsonValue Jsonize() const
void SetS3Uri(const Aws::String &value)
OutputDataConfig & WithS3Uri(const char *value)
AWS_TRANSLATE_API OutputDataConfig(Aws::Utils::Json::JsonView jsonValue)
OutputDataConfig & WithS3Uri(Aws::String &&value)
const Aws::String & GetS3Uri() const
OutputDataConfig & WithS3Uri(const Aws::String &value)
AWS_TRANSLATE_API OutputDataConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetEncryptionKey(EncryptionKey &&value)
void SetEncryptionKey(const EncryptionKey &value)
OutputDataConfig & WithEncryptionKey(EncryptionKey &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue