AWS SDK for C++

AWS SDK for C++ Version 1.11.718

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