AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ProcessingS3Input.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/ProcessingS3DataType.h>
10#include <aws/sagemaker/model/ProcessingS3InputMode.h>
11#include <aws/sagemaker/model/ProcessingS3DataDistributionType.h>
12#include <aws/sagemaker/model/ProcessingS3CompressionType.h>
13#include <utility>
14
15namespace Aws
16{
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22 class JsonView;
23} // namespace Json
24} // namespace Utils
25namespace SageMaker
26{
27namespace Model
28{
29
37 {
38 public:
39 AWS_SAGEMAKER_API ProcessingS3Input();
40 AWS_SAGEMAKER_API ProcessingS3Input(Aws::Utils::Json::JsonView jsonValue);
42 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
50 inline const Aws::String& GetS3Uri() const{ return m_s3Uri; }
51 inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; }
52 inline void SetS3Uri(const Aws::String& value) { m_s3UriHasBeenSet = true; m_s3Uri = value; }
53 inline void SetS3Uri(Aws::String&& value) { m_s3UriHasBeenSet = true; m_s3Uri = std::move(value); }
54 inline void SetS3Uri(const char* value) { m_s3UriHasBeenSet = true; m_s3Uri.assign(value); }
55 inline ProcessingS3Input& WithS3Uri(const Aws::String& value) { SetS3Uri(value); return *this;}
56 inline ProcessingS3Input& WithS3Uri(Aws::String&& value) { SetS3Uri(std::move(value)); return *this;}
57 inline ProcessingS3Input& WithS3Uri(const char* value) { SetS3Uri(value); return *this;}
59
61
68 inline const Aws::String& GetLocalPath() const{ return m_localPath; }
69 inline bool LocalPathHasBeenSet() const { return m_localPathHasBeenSet; }
70 inline void SetLocalPath(const Aws::String& value) { m_localPathHasBeenSet = true; m_localPath = value; }
71 inline void SetLocalPath(Aws::String&& value) { m_localPathHasBeenSet = true; m_localPath = std::move(value); }
72 inline void SetLocalPath(const char* value) { m_localPathHasBeenSet = true; m_localPath.assign(value); }
73 inline ProcessingS3Input& WithLocalPath(const Aws::String& value) { SetLocalPath(value); return *this;}
74 inline ProcessingS3Input& WithLocalPath(Aws::String&& value) { SetLocalPath(std::move(value)); return *this;}
75 inline ProcessingS3Input& WithLocalPath(const char* value) { SetLocalPath(value); return *this;}
77
79
88 inline const ProcessingS3DataType& GetS3DataType() const{ return m_s3DataType; }
89 inline bool S3DataTypeHasBeenSet() const { return m_s3DataTypeHasBeenSet; }
90 inline void SetS3DataType(const ProcessingS3DataType& value) { m_s3DataTypeHasBeenSet = true; m_s3DataType = value; }
91 inline void SetS3DataType(ProcessingS3DataType&& value) { m_s3DataTypeHasBeenSet = true; m_s3DataType = std::move(value); }
92 inline ProcessingS3Input& WithS3DataType(const ProcessingS3DataType& value) { SetS3DataType(value); return *this;}
93 inline ProcessingS3Input& WithS3DataType(ProcessingS3DataType&& value) { SetS3DataType(std::move(value)); return *this;}
95
97
105 inline const ProcessingS3InputMode& GetS3InputMode() const{ return m_s3InputMode; }
106 inline bool S3InputModeHasBeenSet() const { return m_s3InputModeHasBeenSet; }
107 inline void SetS3InputMode(const ProcessingS3InputMode& value) { m_s3InputModeHasBeenSet = true; m_s3InputMode = value; }
108 inline void SetS3InputMode(ProcessingS3InputMode&& value) { m_s3InputModeHasBeenSet = true; m_s3InputMode = std::move(value); }
109 inline ProcessingS3Input& WithS3InputMode(const ProcessingS3InputMode& value) { SetS3InputMode(value); return *this;}
110 inline ProcessingS3Input& WithS3InputMode(ProcessingS3InputMode&& value) { SetS3InputMode(std::move(value)); return *this;}
112
114
119 inline const ProcessingS3DataDistributionType& GetS3DataDistributionType() const{ return m_s3DataDistributionType; }
120 inline bool S3DataDistributionTypeHasBeenSet() const { return m_s3DataDistributionTypeHasBeenSet; }
121 inline void SetS3DataDistributionType(const ProcessingS3DataDistributionType& value) { m_s3DataDistributionTypeHasBeenSet = true; m_s3DataDistributionType = value; }
122 inline void SetS3DataDistributionType(ProcessingS3DataDistributionType&& value) { m_s3DataDistributionTypeHasBeenSet = true; m_s3DataDistributionType = std::move(value); }
126
128
135 inline const ProcessingS3CompressionType& GetS3CompressionType() const{ return m_s3CompressionType; }
136 inline bool S3CompressionTypeHasBeenSet() const { return m_s3CompressionTypeHasBeenSet; }
137 inline void SetS3CompressionType(const ProcessingS3CompressionType& value) { m_s3CompressionTypeHasBeenSet = true; m_s3CompressionType = value; }
138 inline void SetS3CompressionType(ProcessingS3CompressionType&& value) { m_s3CompressionTypeHasBeenSet = true; m_s3CompressionType = std::move(value); }
142 private:
143
144 Aws::String m_s3Uri;
145 bool m_s3UriHasBeenSet = false;
146
147 Aws::String m_localPath;
148 bool m_localPathHasBeenSet = false;
149
150 ProcessingS3DataType m_s3DataType;
151 bool m_s3DataTypeHasBeenSet = false;
152
153 ProcessingS3InputMode m_s3InputMode;
154 bool m_s3InputModeHasBeenSet = false;
155
156 ProcessingS3DataDistributionType m_s3DataDistributionType;
157 bool m_s3DataDistributionTypeHasBeenSet = false;
158
159 ProcessingS3CompressionType m_s3CompressionType;
160 bool m_s3CompressionTypeHasBeenSet = false;
161 };
162
163} // namespace Model
164} // namespace SageMaker
165} // namespace Aws
void SetS3DataDistributionType(ProcessingS3DataDistributionType &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
const ProcessingS3DataType & GetS3DataType() const
void SetS3DataType(const ProcessingS3DataType &value)
ProcessingS3Input & WithS3DataDistributionType(ProcessingS3DataDistributionType &&value)
const ProcessingS3CompressionType & GetS3CompressionType() const
const ProcessingS3InputMode & GetS3InputMode() const
void SetS3CompressionType(const ProcessingS3CompressionType &value)
void SetLocalPath(const Aws::String &value)
void SetS3InputMode(const ProcessingS3InputMode &value)
ProcessingS3Input & WithS3InputMode(ProcessingS3InputMode &&value)
void SetS3DataType(ProcessingS3DataType &&value)
void SetS3Uri(const Aws::String &value)
ProcessingS3Input & WithS3CompressionType(ProcessingS3CompressionType &&value)
void SetS3InputMode(ProcessingS3InputMode &&value)
ProcessingS3Input & WithS3DataDistributionType(const ProcessingS3DataDistributionType &value)
ProcessingS3Input & WithLocalPath(Aws::String &&value)
ProcessingS3Input & WithLocalPath(const char *value)
ProcessingS3Input & WithS3Uri(const char *value)
AWS_SAGEMAKER_API ProcessingS3Input(Aws::Utils::Json::JsonView jsonValue)
const ProcessingS3DataDistributionType & GetS3DataDistributionType() const
void SetS3CompressionType(ProcessingS3CompressionType &&value)
ProcessingS3Input & WithS3DataType(ProcessingS3DataType &&value)
ProcessingS3Input & WithS3Uri(Aws::String &&value)
ProcessingS3Input & WithS3Uri(const Aws::String &value)
const Aws::String & GetLocalPath() const
ProcessingS3Input & WithS3InputMode(const ProcessingS3InputMode &value)
void SetS3DataDistributionType(const ProcessingS3DataDistributionType &value)
ProcessingS3Input & WithLocalPath(const Aws::String &value)
ProcessingS3Input & WithS3DataType(const ProcessingS3DataType &value)
ProcessingS3Input & WithS3CompressionType(const ProcessingS3CompressionType &value)
AWS_SAGEMAKER_API ProcessingS3Input & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue