AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
RecommendationJobOutputConfig.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/sagemaker/SageMaker_EXPORTS.h>
9#include <aws/sagemaker/model/RecommendationJobCompiledOutputConfig.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace SageMaker {
21namespace Model {
22
30 public:
31 AWS_SAGEMAKER_API RecommendationJobOutputConfig() = default;
34 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
54 inline const Aws::String& GetKmsKeyId() const { return m_kmsKeyId; }
55 inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; }
56 template <typename KmsKeyIdT = Aws::String>
57 void SetKmsKeyId(KmsKeyIdT&& value) {
58 m_kmsKeyIdHasBeenSet = true;
59 m_kmsKeyId = std::forward<KmsKeyIdT>(value);
60 }
61 template <typename KmsKeyIdT = Aws::String>
63 SetKmsKeyId(std::forward<KmsKeyIdT>(value));
64 return *this;
65 }
67
69
73 inline const RecommendationJobCompiledOutputConfig& GetCompiledOutputConfig() const { return m_compiledOutputConfig; }
74 inline bool CompiledOutputConfigHasBeenSet() const { return m_compiledOutputConfigHasBeenSet; }
75 template <typename CompiledOutputConfigT = RecommendationJobCompiledOutputConfig>
76 void SetCompiledOutputConfig(CompiledOutputConfigT&& value) {
77 m_compiledOutputConfigHasBeenSet = true;
78 m_compiledOutputConfig = std::forward<CompiledOutputConfigT>(value);
79 }
80 template <typename CompiledOutputConfigT = RecommendationJobCompiledOutputConfig>
82 SetCompiledOutputConfig(std::forward<CompiledOutputConfigT>(value));
83 return *this;
84 }
86 private:
87 Aws::String m_kmsKeyId;
88
89 RecommendationJobCompiledOutputConfig m_compiledOutputConfig;
90 bool m_kmsKeyIdHasBeenSet = false;
91 bool m_compiledOutputConfigHasBeenSet = false;
92};
93
94} // namespace Model
95} // namespace SageMaker
96} // namespace Aws
RecommendationJobOutputConfig & WithKmsKeyId(KmsKeyIdT &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SAGEMAKER_API RecommendationJobOutputConfig(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API RecommendationJobOutputConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API RecommendationJobOutputConfig()=default
const RecommendationJobCompiledOutputConfig & GetCompiledOutputConfig() const
RecommendationJobOutputConfig & WithCompiledOutputConfig(CompiledOutputConfigT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue