AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
EnvironmentConfigDetails.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/sagemaker/SageMaker_EXPORTS.h>
9#include <aws/sagemaker/model/FSxLustreConfig.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace SageMaker {
21namespace Model {
22
30 public:
31 AWS_SAGEMAKER_API EnvironmentConfigDetails() = default;
34 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
41 inline const FSxLustreConfig& GetFSxLustreConfig() const { return m_fSxLustreConfig; }
42 inline bool FSxLustreConfigHasBeenSet() const { return m_fSxLustreConfigHasBeenSet; }
43 template <typename FSxLustreConfigT = FSxLustreConfig>
44 void SetFSxLustreConfig(FSxLustreConfigT&& value) {
45 m_fSxLustreConfigHasBeenSet = true;
46 m_fSxLustreConfig = std::forward<FSxLustreConfigT>(value);
47 }
48 template <typename FSxLustreConfigT = FSxLustreConfig>
49 EnvironmentConfigDetails& WithFSxLustreConfig(FSxLustreConfigT&& value) {
50 SetFSxLustreConfig(std::forward<FSxLustreConfigT>(value));
51 return *this;
52 }
54
56
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) {
64 m_s3OutputPathHasBeenSet = true;
65 m_s3OutputPath = std::forward<S3OutputPathT>(value);
66 }
67 template <typename S3OutputPathT = Aws::String>
69 SetS3OutputPath(std::forward<S3OutputPathT>(value));
70 return *this;
71 }
73 private:
74 FSxLustreConfig m_fSxLustreConfig;
75
76 Aws::String m_s3OutputPath;
77 bool m_fSxLustreConfigHasBeenSet = false;
78 bool m_s3OutputPathHasBeenSet = false;
79};
80
81} // namespace Model
82} // namespace SageMaker
83} // namespace Aws
EnvironmentConfigDetails & WithS3OutputPath(S3OutputPathT &&value)
AWS_SAGEMAKER_API EnvironmentConfigDetails()=default
AWS_SAGEMAKER_API EnvironmentConfigDetails(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
EnvironmentConfigDetails & WithFSxLustreConfig(FSxLustreConfigT &&value)
AWS_SAGEMAKER_API EnvironmentConfigDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue