AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ProcessingOutputConfig.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/sagemaker/model/ProcessingOutput.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace SageMaker
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_SAGEMAKER_API ProcessingOutputConfig() = default;
40 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
48 inline const Aws::Vector<ProcessingOutput>& GetOutputs() const { return m_outputs; }
49 inline bool OutputsHasBeenSet() const { return m_outputsHasBeenSet; }
50 template<typename OutputsT = Aws::Vector<ProcessingOutput>>
51 void SetOutputs(OutputsT&& value) { m_outputsHasBeenSet = true; m_outputs = std::forward<OutputsT>(value); }
52 template<typename OutputsT = Aws::Vector<ProcessingOutput>>
53 ProcessingOutputConfig& WithOutputs(OutputsT&& value) { SetOutputs(std::forward<OutputsT>(value)); return *this;}
54 template<typename OutputsT = ProcessingOutput>
55 ProcessingOutputConfig& AddOutputs(OutputsT&& value) { m_outputsHasBeenSet = true; m_outputs.emplace_back(std::forward<OutputsT>(value)); return *this; }
57
59
65 inline const Aws::String& GetKmsKeyId() const { return m_kmsKeyId; }
66 inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; }
67 template<typename KmsKeyIdT = Aws::String>
68 void SetKmsKeyId(KmsKeyIdT&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::forward<KmsKeyIdT>(value); }
69 template<typename KmsKeyIdT = Aws::String>
70 ProcessingOutputConfig& WithKmsKeyId(KmsKeyIdT&& value) { SetKmsKeyId(std::forward<KmsKeyIdT>(value)); return *this;}
72 private:
73
75 bool m_outputsHasBeenSet = false;
76
77 Aws::String m_kmsKeyId;
78 bool m_kmsKeyIdHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace SageMaker
83} // 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