AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateAppImageConfigRequest.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/sagemaker/SageMakerRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.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{
17namespace SageMaker
18{
19namespace Model
20{
21
25 {
26 public:
27 AWS_SAGEMAKER_API UpdateAppImageConfigRequest();
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "UpdateAppImageConfig"; }
34
35 AWS_SAGEMAKER_API Aws::String SerializePayload() const override;
36
38
39
41
44 inline const Aws::String& GetAppImageConfigName() const{ return m_appImageConfigName; }
45 inline bool AppImageConfigNameHasBeenSet() const { return m_appImageConfigNameHasBeenSet; }
46 inline void SetAppImageConfigName(const Aws::String& value) { m_appImageConfigNameHasBeenSet = true; m_appImageConfigName = value; }
47 inline void SetAppImageConfigName(Aws::String&& value) { m_appImageConfigNameHasBeenSet = true; m_appImageConfigName = std::move(value); }
48 inline void SetAppImageConfigName(const char* value) { m_appImageConfigNameHasBeenSet = true; m_appImageConfigName.assign(value); }
50 inline UpdateAppImageConfigRequest& WithAppImageConfigName(Aws::String&& value) { SetAppImageConfigName(std::move(value)); return *this;}
51 inline UpdateAppImageConfigRequest& WithAppImageConfigName(const char* value) { SetAppImageConfigName(value); return *this;}
53
55
58 inline const KernelGatewayImageConfig& GetKernelGatewayImageConfig() const{ return m_kernelGatewayImageConfig; }
59 inline bool KernelGatewayImageConfigHasBeenSet() const { return m_kernelGatewayImageConfigHasBeenSet; }
60 inline void SetKernelGatewayImageConfig(const KernelGatewayImageConfig& value) { m_kernelGatewayImageConfigHasBeenSet = true; m_kernelGatewayImageConfig = value; }
61 inline void SetKernelGatewayImageConfig(KernelGatewayImageConfig&& value) { m_kernelGatewayImageConfigHasBeenSet = true; m_kernelGatewayImageConfig = std::move(value); }
65
67
70 inline const JupyterLabAppImageConfig& GetJupyterLabAppImageConfig() const{ return m_jupyterLabAppImageConfig; }
71 inline bool JupyterLabAppImageConfigHasBeenSet() const { return m_jupyterLabAppImageConfigHasBeenSet; }
72 inline void SetJupyterLabAppImageConfig(const JupyterLabAppImageConfig& value) { m_jupyterLabAppImageConfigHasBeenSet = true; m_jupyterLabAppImageConfig = value; }
73 inline void SetJupyterLabAppImageConfig(JupyterLabAppImageConfig&& value) { m_jupyterLabAppImageConfigHasBeenSet = true; m_jupyterLabAppImageConfig = std::move(value); }
77
79
82 inline const CodeEditorAppImageConfig& GetCodeEditorAppImageConfig() const{ return m_codeEditorAppImageConfig; }
83 inline bool CodeEditorAppImageConfigHasBeenSet() const { return m_codeEditorAppImageConfigHasBeenSet; }
84 inline void SetCodeEditorAppImageConfig(const CodeEditorAppImageConfig& value) { m_codeEditorAppImageConfigHasBeenSet = true; m_codeEditorAppImageConfig = value; }
85 inline void SetCodeEditorAppImageConfig(CodeEditorAppImageConfig&& value) { m_codeEditorAppImageConfigHasBeenSet = true; m_codeEditorAppImageConfig = std::move(value); }
89 private:
90
91 Aws::String m_appImageConfigName;
92 bool m_appImageConfigNameHasBeenSet = false;
93
94 KernelGatewayImageConfig m_kernelGatewayImageConfig;
95 bool m_kernelGatewayImageConfigHasBeenSet = false;
96
97 JupyterLabAppImageConfig m_jupyterLabAppImageConfig;
98 bool m_jupyterLabAppImageConfigHasBeenSet = false;
99
100 CodeEditorAppImageConfig m_codeEditorAppImageConfig;
101 bool m_codeEditorAppImageConfigHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace SageMaker
106} // namespace Aws
UpdateAppImageConfigRequest & WithAppImageConfigName(const Aws::String &value)
const CodeEditorAppImageConfig & GetCodeEditorAppImageConfig() const
UpdateAppImageConfigRequest & WithAppImageConfigName(Aws::String &&value)
void SetKernelGatewayImageConfig(KernelGatewayImageConfig &&value)
AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
UpdateAppImageConfigRequest & WithCodeEditorAppImageConfig(CodeEditorAppImageConfig &&value)
const JupyterLabAppImageConfig & GetJupyterLabAppImageConfig() const
UpdateAppImageConfigRequest & WithJupyterLabAppImageConfig(JupyterLabAppImageConfig &&value)
UpdateAppImageConfigRequest & WithKernelGatewayImageConfig(const KernelGatewayImageConfig &value)
UpdateAppImageConfigRequest & WithAppImageConfigName(const char *value)
void SetKernelGatewayImageConfig(const KernelGatewayImageConfig &value)
UpdateAppImageConfigRequest & WithKernelGatewayImageConfig(KernelGatewayImageConfig &&value)
UpdateAppImageConfigRequest & WithCodeEditorAppImageConfig(const CodeEditorAppImageConfig &value)
virtual const char * GetServiceRequestName() const override
void SetCodeEditorAppImageConfig(CodeEditorAppImageConfig &&value)
void SetJupyterLabAppImageConfig(JupyterLabAppImageConfig &&value)
UpdateAppImageConfigRequest & WithJupyterLabAppImageConfig(const JupyterLabAppImageConfig &value)
void SetCodeEditorAppImageConfig(const CodeEditorAppImageConfig &value)
void SetJupyterLabAppImageConfig(const JupyterLabAppImageConfig &value)
AWS_SAGEMAKER_API Aws::String SerializePayload() const override
const KernelGatewayImageConfig & GetKernelGatewayImageConfig() const
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String