AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
ProcessingOutputConfig.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/sagemaker/SageMaker_EXPORTS.h>
10#include <aws/sagemaker/model/ProcessingOutput.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace SageMaker {
22namespace Model {
23
31 public:
32 AWS_SAGEMAKER_API ProcessingOutputConfig() = default;
35 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
42 inline const Aws::Vector<ProcessingOutput>& GetOutputs() const { return m_outputs; }
43 inline bool OutputsHasBeenSet() const { return m_outputsHasBeenSet; }
44 template <typename OutputsT = Aws::Vector<ProcessingOutput>>
45 void SetOutputs(OutputsT&& value) {
46 m_outputsHasBeenSet = true;
47 m_outputs = std::forward<OutputsT>(value);
48 }
49 template <typename OutputsT = Aws::Vector<ProcessingOutput>>
51 SetOutputs(std::forward<OutputsT>(value));
52 return *this;
53 }
54 template <typename OutputsT = ProcessingOutput>
56 m_outputsHasBeenSet = true;
57 m_outputs.emplace_back(std::forward<OutputsT>(value));
58 return *this;
59 }
61
63
69 inline const Aws::String& GetKmsKeyId() const { return m_kmsKeyId; }
70 inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; }
71 template <typename KmsKeyIdT = Aws::String>
72 void SetKmsKeyId(KmsKeyIdT&& value) {
73 m_kmsKeyIdHasBeenSet = true;
74 m_kmsKeyId = std::forward<KmsKeyIdT>(value);
75 }
76 template <typename KmsKeyIdT = Aws::String>
78 SetKmsKeyId(std::forward<KmsKeyIdT>(value));
79 return *this;
80 }
82 private:
84
85 Aws::String m_kmsKeyId;
86 bool m_outputsHasBeenSet = false;
87 bool m_kmsKeyIdHasBeenSet = false;
88};
89
90} // namespace Model
91} // namespace SageMaker
92} // namespace Aws
ProcessingOutputConfig & WithOutputs(OutputsT &&value)
ProcessingOutputConfig & AddOutputs(OutputsT &&value)
AWS_SAGEMAKER_API ProcessingOutputConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
ProcessingOutputConfig & WithKmsKeyId(KmsKeyIdT &&value)
AWS_SAGEMAKER_API ProcessingOutputConfig(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< ProcessingOutput > & GetOutputs() const
AWS_SAGEMAKER_API ProcessingOutputConfig()=default
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue