AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
CustomFileSystemConfig.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/sagemaker/model/EFSFileSystemConfig.h>
9#include <aws/sagemaker/model/FSxLustreFileSystemConfig.h>
10#include <aws/sagemaker/model/S3FileSystemConfig.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
36 {
37 public:
38 AWS_SAGEMAKER_API CustomFileSystemConfig() = default;
41 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const EFSFileSystemConfig& GetEFSFileSystemConfig() const { return m_eFSFileSystemConfig; }
49 inline bool EFSFileSystemConfigHasBeenSet() const { return m_eFSFileSystemConfigHasBeenSet; }
50 template<typename EFSFileSystemConfigT = EFSFileSystemConfig>
51 void SetEFSFileSystemConfig(EFSFileSystemConfigT&& value) { m_eFSFileSystemConfigHasBeenSet = true; m_eFSFileSystemConfig = std::forward<EFSFileSystemConfigT>(value); }
52 template<typename EFSFileSystemConfigT = EFSFileSystemConfig>
53 CustomFileSystemConfig& WithEFSFileSystemConfig(EFSFileSystemConfigT&& value) { SetEFSFileSystemConfig(std::forward<EFSFileSystemConfigT>(value)); return *this;}
55
57
60 inline const FSxLustreFileSystemConfig& GetFSxLustreFileSystemConfig() const { return m_fSxLustreFileSystemConfig; }
61 inline bool FSxLustreFileSystemConfigHasBeenSet() const { return m_fSxLustreFileSystemConfigHasBeenSet; }
62 template<typename FSxLustreFileSystemConfigT = FSxLustreFileSystemConfig>
63 void SetFSxLustreFileSystemConfig(FSxLustreFileSystemConfigT&& value) { m_fSxLustreFileSystemConfigHasBeenSet = true; m_fSxLustreFileSystemConfig = std::forward<FSxLustreFileSystemConfigT>(value); }
64 template<typename FSxLustreFileSystemConfigT = FSxLustreFileSystemConfig>
65 CustomFileSystemConfig& WithFSxLustreFileSystemConfig(FSxLustreFileSystemConfigT&& value) { SetFSxLustreFileSystemConfig(std::forward<FSxLustreFileSystemConfigT>(value)); return *this;}
67
69
72 inline const S3FileSystemConfig& GetS3FileSystemConfig() const { return m_s3FileSystemConfig; }
73 inline bool S3FileSystemConfigHasBeenSet() const { return m_s3FileSystemConfigHasBeenSet; }
74 template<typename S3FileSystemConfigT = S3FileSystemConfig>
75 void SetS3FileSystemConfig(S3FileSystemConfigT&& value) { m_s3FileSystemConfigHasBeenSet = true; m_s3FileSystemConfig = std::forward<S3FileSystemConfigT>(value); }
76 template<typename S3FileSystemConfigT = S3FileSystemConfig>
77 CustomFileSystemConfig& WithS3FileSystemConfig(S3FileSystemConfigT&& value) { SetS3FileSystemConfig(std::forward<S3FileSystemConfigT>(value)); return *this;}
79 private:
80
81 EFSFileSystemConfig m_eFSFileSystemConfig;
82 bool m_eFSFileSystemConfigHasBeenSet = false;
83
84 FSxLustreFileSystemConfig m_fSxLustreFileSystemConfig;
85 bool m_fSxLustreFileSystemConfigHasBeenSet = false;
86
87 S3FileSystemConfig m_s3FileSystemConfig;
88 bool m_s3FileSystemConfigHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace SageMaker
93} // namespace Aws
void SetFSxLustreFileSystemConfig(FSxLustreFileSystemConfigT &&value)
const S3FileSystemConfig & GetS3FileSystemConfig() const
void SetEFSFileSystemConfig(EFSFileSystemConfigT &&value)
const FSxLustreFileSystemConfig & GetFSxLustreFileSystemConfig() const
const EFSFileSystemConfig & GetEFSFileSystemConfig() const
AWS_SAGEMAKER_API CustomFileSystemConfig(Aws::Utils::Json::JsonView jsonValue)
CustomFileSystemConfig & WithEFSFileSystemConfig(EFSFileSystemConfigT &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
CustomFileSystemConfig & WithFSxLustreFileSystemConfig(FSxLustreFileSystemConfigT &&value)
AWS_SAGEMAKER_API CustomFileSystemConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetS3FileSystemConfig(S3FileSystemConfigT &&value)
AWS_SAGEMAKER_API CustomFileSystemConfig()=default
CustomFileSystemConfig & WithS3FileSystemConfig(S3FileSystemConfigT &&value)
Aws::Utils::Json::JsonValue JsonValue