AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DescribeAppImageConfigResult.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/sagemaker/model/KernelGatewayImageConfig.h>
11#include <aws/sagemaker/model/JupyterLabAppImageConfig.h>
12#include <aws/sagemaker/model/CodeEditorAppImageConfig.h>
13#include <utility>
14
15namespace Aws
16{
17template<typename RESULT_TYPE>
18class AmazonWebServiceResult;
19
20namespace Utils
21{
22namespace Json
23{
24 class JsonValue;
25} // namespace Json
26} // namespace Utils
27namespace SageMaker
28{
29namespace Model
30{
32 {
33 public:
34 AWS_SAGEMAKER_API DescribeAppImageConfigResult() = default;
37
38
40
43 inline const Aws::String& GetAppImageConfigArn() const { return m_appImageConfigArn; }
44 template<typename AppImageConfigArnT = Aws::String>
45 void SetAppImageConfigArn(AppImageConfigArnT&& value) { m_appImageConfigArnHasBeenSet = true; m_appImageConfigArn = std::forward<AppImageConfigArnT>(value); }
46 template<typename AppImageConfigArnT = Aws::String>
47 DescribeAppImageConfigResult& WithAppImageConfigArn(AppImageConfigArnT&& value) { SetAppImageConfigArn(std::forward<AppImageConfigArnT>(value)); return *this;}
49
51
54 inline const Aws::String& GetAppImageConfigName() const { return m_appImageConfigName; }
55 template<typename AppImageConfigNameT = Aws::String>
56 void SetAppImageConfigName(AppImageConfigNameT&& value) { m_appImageConfigNameHasBeenSet = true; m_appImageConfigName = std::forward<AppImageConfigNameT>(value); }
57 template<typename AppImageConfigNameT = Aws::String>
58 DescribeAppImageConfigResult& WithAppImageConfigName(AppImageConfigNameT&& value) { SetAppImageConfigName(std::forward<AppImageConfigNameT>(value)); return *this;}
60
62
65 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
66 template<typename CreationTimeT = Aws::Utils::DateTime>
67 void SetCreationTime(CreationTimeT&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::forward<CreationTimeT>(value); }
68 template<typename CreationTimeT = Aws::Utils::DateTime>
69 DescribeAppImageConfigResult& WithCreationTime(CreationTimeT&& value) { SetCreationTime(std::forward<CreationTimeT>(value)); return *this;}
71
73
76 inline const Aws::Utils::DateTime& GetLastModifiedTime() const { return m_lastModifiedTime; }
77 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
78 void SetLastModifiedTime(LastModifiedTimeT&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::forward<LastModifiedTimeT>(value); }
79 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
80 DescribeAppImageConfigResult& WithLastModifiedTime(LastModifiedTimeT&& value) { SetLastModifiedTime(std::forward<LastModifiedTimeT>(value)); return *this;}
82
84
87 inline const KernelGatewayImageConfig& GetKernelGatewayImageConfig() const { return m_kernelGatewayImageConfig; }
88 template<typename KernelGatewayImageConfigT = KernelGatewayImageConfig>
89 void SetKernelGatewayImageConfig(KernelGatewayImageConfigT&& value) { m_kernelGatewayImageConfigHasBeenSet = true; m_kernelGatewayImageConfig = std::forward<KernelGatewayImageConfigT>(value); }
90 template<typename KernelGatewayImageConfigT = KernelGatewayImageConfig>
91 DescribeAppImageConfigResult& WithKernelGatewayImageConfig(KernelGatewayImageConfigT&& value) { SetKernelGatewayImageConfig(std::forward<KernelGatewayImageConfigT>(value)); return *this;}
93
95
98 inline const JupyterLabAppImageConfig& GetJupyterLabAppImageConfig() const { return m_jupyterLabAppImageConfig; }
99 template<typename JupyterLabAppImageConfigT = JupyterLabAppImageConfig>
100 void SetJupyterLabAppImageConfig(JupyterLabAppImageConfigT&& value) { m_jupyterLabAppImageConfigHasBeenSet = true; m_jupyterLabAppImageConfig = std::forward<JupyterLabAppImageConfigT>(value); }
101 template<typename JupyterLabAppImageConfigT = JupyterLabAppImageConfig>
102 DescribeAppImageConfigResult& WithJupyterLabAppImageConfig(JupyterLabAppImageConfigT&& value) { SetJupyterLabAppImageConfig(std::forward<JupyterLabAppImageConfigT>(value)); return *this;}
104
106
109 inline const CodeEditorAppImageConfig& GetCodeEditorAppImageConfig() const { return m_codeEditorAppImageConfig; }
110 template<typename CodeEditorAppImageConfigT = CodeEditorAppImageConfig>
111 void SetCodeEditorAppImageConfig(CodeEditorAppImageConfigT&& value) { m_codeEditorAppImageConfigHasBeenSet = true; m_codeEditorAppImageConfig = std::forward<CodeEditorAppImageConfigT>(value); }
112 template<typename CodeEditorAppImageConfigT = CodeEditorAppImageConfig>
113 DescribeAppImageConfigResult& WithCodeEditorAppImageConfig(CodeEditorAppImageConfigT&& value) { SetCodeEditorAppImageConfig(std::forward<CodeEditorAppImageConfigT>(value)); return *this;}
115
117
118 inline const Aws::String& GetRequestId() const { return m_requestId; }
119 template<typename RequestIdT = Aws::String>
120 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
121 template<typename RequestIdT = Aws::String>
122 DescribeAppImageConfigResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
124 private:
125
126 Aws::String m_appImageConfigArn;
127 bool m_appImageConfigArnHasBeenSet = false;
128
129 Aws::String m_appImageConfigName;
130 bool m_appImageConfigNameHasBeenSet = false;
131
132 Aws::Utils::DateTime m_creationTime{};
133 bool m_creationTimeHasBeenSet = false;
134
135 Aws::Utils::DateTime m_lastModifiedTime{};
136 bool m_lastModifiedTimeHasBeenSet = false;
137
138 KernelGatewayImageConfig m_kernelGatewayImageConfig;
139 bool m_kernelGatewayImageConfigHasBeenSet = false;
140
141 JupyterLabAppImageConfig m_jupyterLabAppImageConfig;
142 bool m_jupyterLabAppImageConfigHasBeenSet = false;
143
144 CodeEditorAppImageConfig m_codeEditorAppImageConfig;
145 bool m_codeEditorAppImageConfigHasBeenSet = false;
146
147 Aws::String m_requestId;
148 bool m_requestIdHasBeenSet = false;
149 };
150
151} // namespace Model
152} // namespace SageMaker
153} // namespace Aws
void SetKernelGatewayImageConfig(KernelGatewayImageConfigT &&value)
AWS_SAGEMAKER_API DescribeAppImageConfigResult()=default
DescribeAppImageConfigResult & WithLastModifiedTime(LastModifiedTimeT &&value)
AWS_SAGEMAKER_API DescribeAppImageConfigResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeAppImageConfigResult & WithCreationTime(CreationTimeT &&value)
DescribeAppImageConfigResult & WithJupyterLabAppImageConfig(JupyterLabAppImageConfigT &&value)
const KernelGatewayImageConfig & GetKernelGatewayImageConfig() const
DescribeAppImageConfigResult & WithKernelGatewayImageConfig(KernelGatewayImageConfigT &&value)
void SetCodeEditorAppImageConfig(CodeEditorAppImageConfigT &&value)
const JupyterLabAppImageConfig & GetJupyterLabAppImageConfig() const
DescribeAppImageConfigResult & WithAppImageConfigArn(AppImageConfigArnT &&value)
AWS_SAGEMAKER_API DescribeAppImageConfigResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
const CodeEditorAppImageConfig & GetCodeEditorAppImageConfig() const
DescribeAppImageConfigResult & WithAppImageConfigName(AppImageConfigNameT &&value)
DescribeAppImageConfigResult & WithCodeEditorAppImageConfig(CodeEditorAppImageConfigT &&value)
DescribeAppImageConfigResult & WithRequestId(RequestIdT &&value)
void SetJupyterLabAppImageConfig(JupyterLabAppImageConfigT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue