AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ProcessingS3Output.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/ProcessingS3UploadMode.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
34 {
35 public:
36 AWS_SAGEMAKER_API ProcessingS3Output();
37 AWS_SAGEMAKER_API ProcessingS3Output(Aws::Utils::Json::JsonView jsonValue);
39 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetS3Uri() const{ return m_s3Uri; }
48 inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; }
49 inline void SetS3Uri(const Aws::String& value) { m_s3UriHasBeenSet = true; m_s3Uri = value; }
50 inline void SetS3Uri(Aws::String&& value) { m_s3UriHasBeenSet = true; m_s3Uri = std::move(value); }
51 inline void SetS3Uri(const char* value) { m_s3UriHasBeenSet = true; m_s3Uri.assign(value); }
52 inline ProcessingS3Output& WithS3Uri(const Aws::String& value) { SetS3Uri(value); return *this;}
53 inline ProcessingS3Output& WithS3Uri(Aws::String&& value) { SetS3Uri(std::move(value)); return *this;}
54 inline ProcessingS3Output& WithS3Uri(const char* value) { SetS3Uri(value); return *this;}
56
58
64 inline const Aws::String& GetLocalPath() const{ return m_localPath; }
65 inline bool LocalPathHasBeenSet() const { return m_localPathHasBeenSet; }
66 inline void SetLocalPath(const Aws::String& value) { m_localPathHasBeenSet = true; m_localPath = value; }
67 inline void SetLocalPath(Aws::String&& value) { m_localPathHasBeenSet = true; m_localPath = std::move(value); }
68 inline void SetLocalPath(const char* value) { m_localPathHasBeenSet = true; m_localPath.assign(value); }
69 inline ProcessingS3Output& WithLocalPath(const Aws::String& value) { SetLocalPath(value); return *this;}
70 inline ProcessingS3Output& WithLocalPath(Aws::String&& value) { SetLocalPath(std::move(value)); return *this;}
71 inline ProcessingS3Output& WithLocalPath(const char* value) { SetLocalPath(value); return *this;}
73
75
79 inline const ProcessingS3UploadMode& GetS3UploadMode() const{ return m_s3UploadMode; }
80 inline bool S3UploadModeHasBeenSet() const { return m_s3UploadModeHasBeenSet; }
81 inline void SetS3UploadMode(const ProcessingS3UploadMode& value) { m_s3UploadModeHasBeenSet = true; m_s3UploadMode = value; }
82 inline void SetS3UploadMode(ProcessingS3UploadMode&& value) { m_s3UploadModeHasBeenSet = true; m_s3UploadMode = std::move(value); }
83 inline ProcessingS3Output& WithS3UploadMode(const ProcessingS3UploadMode& value) { SetS3UploadMode(value); return *this;}
84 inline ProcessingS3Output& WithS3UploadMode(ProcessingS3UploadMode&& value) { SetS3UploadMode(std::move(value)); return *this;}
86 private:
87
88 Aws::String m_s3Uri;
89 bool m_s3UriHasBeenSet = false;
90
91 Aws::String m_localPath;
92 bool m_localPathHasBeenSet = false;
93
94 ProcessingS3UploadMode m_s3UploadMode;
95 bool m_s3UploadModeHasBeenSet = false;
96 };
97
98} // namespace Model
99} // namespace SageMaker
100} // namespace Aws
ProcessingS3Output & WithS3UploadMode(const ProcessingS3UploadMode &value)
ProcessingS3Output & WithS3UploadMode(ProcessingS3UploadMode &&value)
ProcessingS3Output & WithLocalPath(const char *value)
ProcessingS3Output & WithLocalPath(Aws::String &&value)
ProcessingS3Output & WithLocalPath(const Aws::String &value)
void SetS3UploadMode(const ProcessingS3UploadMode &value)
AWS_SAGEMAKER_API ProcessingS3Output(Aws::Utils::Json::JsonView jsonValue)
void SetS3UploadMode(ProcessingS3UploadMode &&value)
ProcessingS3Output & WithS3Uri(const char *value)
void SetLocalPath(const Aws::String &value)
const ProcessingS3UploadMode & GetS3UploadMode() const
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SAGEMAKER_API ProcessingS3Output & operator=(Aws::Utils::Json::JsonView jsonValue)
ProcessingS3Output & WithS3Uri(const Aws::String &value)
void SetS3Uri(const Aws::String &value)
ProcessingS3Output & WithS3Uri(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue