AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
JupyterLabAppImageConfig.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/sagemaker/model/FileSystemConfig.h>
9#include <aws/sagemaker/model/ContainerConfig.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
35 {
36 public:
37 AWS_SAGEMAKER_API JupyterLabAppImageConfig() = default;
40 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
45 inline const FileSystemConfig& GetFileSystemConfig() const { return m_fileSystemConfig; }
46 inline bool FileSystemConfigHasBeenSet() const { return m_fileSystemConfigHasBeenSet; }
47 template<typename FileSystemConfigT = FileSystemConfig>
48 void SetFileSystemConfig(FileSystemConfigT&& value) { m_fileSystemConfigHasBeenSet = true; m_fileSystemConfig = std::forward<FileSystemConfigT>(value); }
49 template<typename FileSystemConfigT = FileSystemConfig>
50 JupyterLabAppImageConfig& WithFileSystemConfig(FileSystemConfigT&& value) { SetFileSystemConfig(std::forward<FileSystemConfigT>(value)); return *this;}
52
54
55 inline const ContainerConfig& GetContainerConfig() const { return m_containerConfig; }
56 inline bool ContainerConfigHasBeenSet() const { return m_containerConfigHasBeenSet; }
57 template<typename ContainerConfigT = ContainerConfig>
58 void SetContainerConfig(ContainerConfigT&& value) { m_containerConfigHasBeenSet = true; m_containerConfig = std::forward<ContainerConfigT>(value); }
59 template<typename ContainerConfigT = ContainerConfig>
60 JupyterLabAppImageConfig& WithContainerConfig(ContainerConfigT&& value) { SetContainerConfig(std::forward<ContainerConfigT>(value)); return *this;}
62 private:
63
64 FileSystemConfig m_fileSystemConfig;
65 bool m_fileSystemConfigHasBeenSet = false;
66
67 ContainerConfig m_containerConfig;
68 bool m_containerConfigHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace SageMaker
73} // namespace Aws
AWS_SAGEMAKER_API JupyterLabAppImageConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API JupyterLabAppImageConfig(Aws::Utils::Json::JsonView jsonValue)
JupyterLabAppImageConfig & WithFileSystemConfig(FileSystemConfigT &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SAGEMAKER_API JupyterLabAppImageConfig()=default
JupyterLabAppImageConfig & WithContainerConfig(ContainerConfigT &&value)
Aws::Utils::Json::JsonValue JsonValue