AWS SDK for C++

AWS SDK for C++ Version 1.11.752

Loading...
Searching...
No Matches
OutputDataConfig.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/voice-id/VoiceID_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace VoiceID {
20namespace Model {
21
29 public:
30 AWS_VOICEID_API OutputDataConfig() = default;
31 AWS_VOICEID_API OutputDataConfig(Aws::Utils::Json::JsonView jsonValue);
33 AWS_VOICEID_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetKmsKeyId() const { return m_kmsKeyId; }
41 inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; }
42 template <typename KmsKeyIdT = Aws::String>
43 void SetKmsKeyId(KmsKeyIdT&& value) {
44 m_kmsKeyIdHasBeenSet = true;
45 m_kmsKeyId = std::forward<KmsKeyIdT>(value);
46 }
47 template <typename KmsKeyIdT = Aws::String>
48 OutputDataConfig& WithKmsKeyId(KmsKeyIdT&& value) {
49 SetKmsKeyId(std::forward<KmsKeyIdT>(value));
50 return *this;
51 }
53
55
62 inline const Aws::String& GetS3Uri() const { return m_s3Uri; }
63 inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; }
64 template <typename S3UriT = Aws::String>
65 void SetS3Uri(S3UriT&& value) {
66 m_s3UriHasBeenSet = true;
67 m_s3Uri = std::forward<S3UriT>(value);
68 }
69 template <typename S3UriT = Aws::String>
70 OutputDataConfig& WithS3Uri(S3UriT&& value) {
71 SetS3Uri(std::forward<S3UriT>(value));
72 return *this;
73 }
75 private:
76 Aws::String m_kmsKeyId;
77
78 Aws::String m_s3Uri;
79 bool m_kmsKeyIdHasBeenSet = false;
80 bool m_s3UriHasBeenSet = false;
81};
82
83} // namespace Model
84} // namespace VoiceID
85} // namespace Aws
AWS_VOICEID_API Aws::Utils::Json::JsonValue Jsonize() const
OutputDataConfig & WithKmsKeyId(KmsKeyIdT &&value)
const Aws::String & GetKmsKeyId() const
const Aws::String & GetS3Uri() const
AWS_VOICEID_API OutputDataConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
OutputDataConfig & WithS3Uri(S3UriT &&value)
AWS_VOICEID_API OutputDataConfig()=default
AWS_VOICEID_API OutputDataConfig(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue