AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
TransformOutput.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/sagemaker/model/AssemblyType.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 SageMaker
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_SAGEMAKER_API TransformOutput() = default;
36 AWS_SAGEMAKER_API TransformOutput(Aws::Utils::Json::JsonView jsonValue);
38 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
60 inline const Aws::String& GetS3OutputPath() const { return m_s3OutputPath; }
61 inline bool S3OutputPathHasBeenSet() const { return m_s3OutputPathHasBeenSet; }
62 template<typename S3OutputPathT = Aws::String>
63 void SetS3OutputPath(S3OutputPathT&& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = std::forward<S3OutputPathT>(value); }
64 template<typename S3OutputPathT = Aws::String>
65 TransformOutput& WithS3OutputPath(S3OutputPathT&& value) { SetS3OutputPath(std::forward<S3OutputPathT>(value)); return *this;}
67
69
73 inline const Aws::String& GetAccept() const { return m_accept; }
74 inline bool AcceptHasBeenSet() const { return m_acceptHasBeenSet; }
75 template<typename AcceptT = Aws::String>
76 void SetAccept(AcceptT&& value) { m_acceptHasBeenSet = true; m_accept = std::forward<AcceptT>(value); }
77 template<typename AcceptT = Aws::String>
78 TransformOutput& WithAccept(AcceptT&& value) { SetAccept(std::forward<AcceptT>(value)); return *this;}
80
82
88 inline AssemblyType GetAssembleWith() const { return m_assembleWith; }
89 inline bool AssembleWithHasBeenSet() const { return m_assembleWithHasBeenSet; }
90 inline void SetAssembleWith(AssemblyType value) { m_assembleWithHasBeenSet = true; m_assembleWith = value; }
91 inline TransformOutput& WithAssembleWith(AssemblyType value) { SetAssembleWith(value); return *this;}
93
95
117 inline const Aws::String& GetKmsKeyId() const { return m_kmsKeyId; }
118 inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; }
119 template<typename KmsKeyIdT = Aws::String>
120 void SetKmsKeyId(KmsKeyIdT&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::forward<KmsKeyIdT>(value); }
121 template<typename KmsKeyIdT = Aws::String>
122 TransformOutput& WithKmsKeyId(KmsKeyIdT&& value) { SetKmsKeyId(std::forward<KmsKeyIdT>(value)); return *this;}
124 private:
125
126 Aws::String m_s3OutputPath;
127 bool m_s3OutputPathHasBeenSet = false;
128
129 Aws::String m_accept;
130 bool m_acceptHasBeenSet = false;
131
132 AssemblyType m_assembleWith{AssemblyType::NOT_SET};
133 bool m_assembleWithHasBeenSet = false;
134
135 Aws::String m_kmsKeyId;
136 bool m_kmsKeyIdHasBeenSet = false;
137 };
138
139} // namespace Model
140} // namespace SageMaker
141} // namespace Aws
AWS_SAGEMAKER_API TransformOutput()=default
TransformOutput & WithAssembleWith(AssemblyType value)
TransformOutput & WithAccept(AcceptT &&value)
const Aws::String & GetKmsKeyId() const
TransformOutput & WithS3OutputPath(S3OutputPathT &&value)
TransformOutput & WithKmsKeyId(KmsKeyIdT &&value)
AWS_SAGEMAKER_API TransformOutput(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetAccept() const
const Aws::String & GetS3OutputPath() const
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
void SetAssembleWith(AssemblyType value)
void SetS3OutputPath(S3OutputPathT &&value)
AWS_SAGEMAKER_API TransformOutput & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue