AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
EdgeOutputConfig.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/sagemaker/SageMaker_EXPORTS.h>
9#include <aws/sagemaker/model/EdgePresetDeploymentType.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
29 public:
30 AWS_SAGEMAKER_API EdgeOutputConfig() = default;
31 AWS_SAGEMAKER_API EdgeOutputConfig(Aws::Utils::Json::JsonView jsonValue);
33 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetS3OutputLocation() const { return m_s3OutputLocation; }
40 inline bool S3OutputLocationHasBeenSet() const { return m_s3OutputLocationHasBeenSet; }
41 template <typename S3OutputLocationT = Aws::String>
42 void SetS3OutputLocation(S3OutputLocationT&& value) {
43 m_s3OutputLocationHasBeenSet = true;
44 m_s3OutputLocation = std::forward<S3OutputLocationT>(value);
45 }
46 template <typename S3OutputLocationT = Aws::String>
47 EdgeOutputConfig& WithS3OutputLocation(S3OutputLocationT&& value) {
48 SetS3OutputLocation(std::forward<S3OutputLocationT>(value));
49 return *this;
50 }
52
54
60 inline const Aws::String& GetKmsKeyId() const { return m_kmsKeyId; }
61 inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; }
62 template <typename KmsKeyIdT = Aws::String>
63 void SetKmsKeyId(KmsKeyIdT&& value) {
64 m_kmsKeyIdHasBeenSet = true;
65 m_kmsKeyId = std::forward<KmsKeyIdT>(value);
66 }
67 template <typename KmsKeyIdT = Aws::String>
68 EdgeOutputConfig& WithKmsKeyId(KmsKeyIdT&& value) {
69 SetKmsKeyId(std::forward<KmsKeyIdT>(value));
70 return *this;
71 }
73
75
79 inline EdgePresetDeploymentType GetPresetDeploymentType() const { return m_presetDeploymentType; }
80 inline bool PresetDeploymentTypeHasBeenSet() const { return m_presetDeploymentTypeHasBeenSet; }
82 m_presetDeploymentTypeHasBeenSet = true;
83 m_presetDeploymentType = value;
84 }
87 return *this;
88 }
90
92
112 inline const Aws::String& GetPresetDeploymentConfig() const { return m_presetDeploymentConfig; }
113 inline bool PresetDeploymentConfigHasBeenSet() const { return m_presetDeploymentConfigHasBeenSet; }
114 template <typename PresetDeploymentConfigT = Aws::String>
115 void SetPresetDeploymentConfig(PresetDeploymentConfigT&& value) {
116 m_presetDeploymentConfigHasBeenSet = true;
117 m_presetDeploymentConfig = std::forward<PresetDeploymentConfigT>(value);
118 }
119 template <typename PresetDeploymentConfigT = Aws::String>
120 EdgeOutputConfig& WithPresetDeploymentConfig(PresetDeploymentConfigT&& value) {
121 SetPresetDeploymentConfig(std::forward<PresetDeploymentConfigT>(value));
122 return *this;
123 }
125 private:
126 Aws::String m_s3OutputLocation;
127
128 Aws::String m_kmsKeyId;
129
131
132 Aws::String m_presetDeploymentConfig;
133 bool m_s3OutputLocationHasBeenSet = false;
134 bool m_kmsKeyIdHasBeenSet = false;
135 bool m_presetDeploymentTypeHasBeenSet = false;
136 bool m_presetDeploymentConfigHasBeenSet = false;
137};
138
139} // namespace Model
140} // namespace SageMaker
141} // namespace Aws
EdgeOutputConfig & WithPresetDeploymentType(EdgePresetDeploymentType value)
void SetPresetDeploymentType(EdgePresetDeploymentType value)
EdgeOutputConfig & WithS3OutputLocation(S3OutputLocationT &&value)
EdgeOutputConfig & WithKmsKeyId(KmsKeyIdT &&value)
const Aws::String & GetS3OutputLocation() const
void SetPresetDeploymentConfig(PresetDeploymentConfigT &&value)
EdgeOutputConfig & WithPresetDeploymentConfig(PresetDeploymentConfigT &&value)
AWS_SAGEMAKER_API EdgeOutputConfig(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API EdgeOutputConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetPresetDeploymentConfig() const
EdgePresetDeploymentType GetPresetDeploymentType() const
AWS_SAGEMAKER_API EdgeOutputConfig()=default
void SetS3OutputLocation(S3OutputLocationT &&value)
const Aws::String & GetKmsKeyId() const
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue