AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
CloudRemovalConfigInput.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
10#include <aws/sagemaker-geospatial/model/AlgorithmNameCloudRemoval.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace SageMakerGeospatial {
22namespace Model {
23
31 public:
32 AWS_SAGEMAKERGEOSPATIAL_API CloudRemovalConfigInput() = default;
33 AWS_SAGEMAKERGEOSPATIAL_API CloudRemovalConfigInput(Aws::Utils::Json::JsonView jsonValue);
34 AWS_SAGEMAKERGEOSPATIAL_API CloudRemovalConfigInput& operator=(Aws::Utils::Json::JsonView jsonValue);
35 AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline AlgorithmNameCloudRemoval GetAlgorithmName() const { return m_algorithmName; }
42 inline bool AlgorithmNameHasBeenSet() const { return m_algorithmNameHasBeenSet; }
44 m_algorithmNameHasBeenSet = true;
45 m_algorithmName = value;
46 }
48 SetAlgorithmName(value);
49 return *this;
50 }
52
54
57 inline const Aws::String& GetInterpolationValue() const { return m_interpolationValue; }
58 inline bool InterpolationValueHasBeenSet() const { return m_interpolationValueHasBeenSet; }
59 template <typename InterpolationValueT = Aws::String>
60 void SetInterpolationValue(InterpolationValueT&& value) {
61 m_interpolationValueHasBeenSet = true;
62 m_interpolationValue = std::forward<InterpolationValueT>(value);
63 }
64 template <typename InterpolationValueT = Aws::String>
65 CloudRemovalConfigInput& WithInterpolationValue(InterpolationValueT&& value) {
66 SetInterpolationValue(std::forward<InterpolationValueT>(value));
67 return *this;
68 }
70
72
75 inline const Aws::Vector<Aws::String>& GetTargetBands() const { return m_targetBands; }
76 inline bool TargetBandsHasBeenSet() const { return m_targetBandsHasBeenSet; }
77 template <typename TargetBandsT = Aws::Vector<Aws::String>>
78 void SetTargetBands(TargetBandsT&& value) {
79 m_targetBandsHasBeenSet = true;
80 m_targetBands = std::forward<TargetBandsT>(value);
81 }
82 template <typename TargetBandsT = Aws::Vector<Aws::String>>
84 SetTargetBands(std::forward<TargetBandsT>(value));
85 return *this;
86 }
87 template <typename TargetBandsT = Aws::String>
88 CloudRemovalConfigInput& AddTargetBands(TargetBandsT&& value) {
89 m_targetBandsHasBeenSet = true;
90 m_targetBands.emplace_back(std::forward<TargetBandsT>(value));
91 return *this;
92 }
94 private:
96
97 Aws::String m_interpolationValue;
98
99 Aws::Vector<Aws::String> m_targetBands;
100 bool m_algorithmNameHasBeenSet = false;
101 bool m_interpolationValueHasBeenSet = false;
102 bool m_targetBandsHasBeenSet = false;
103};
104
105} // namespace Model
106} // namespace SageMakerGeospatial
107} // namespace Aws
AWS_SAGEMAKERGEOSPATIAL_API CloudRemovalConfigInput()=default
AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const
CloudRemovalConfigInput & WithInterpolationValue(InterpolationValueT &&value)
CloudRemovalConfigInput & AddTargetBands(TargetBandsT &&value)
AWS_SAGEMAKERGEOSPATIAL_API CloudRemovalConfigInput & operator=(Aws::Utils::Json::JsonView jsonValue)
CloudRemovalConfigInput & WithAlgorithmName(AlgorithmNameCloudRemoval value)
CloudRemovalConfigInput & WithTargetBands(TargetBandsT &&value)
const Aws::Vector< Aws::String > & GetTargetBands() const
AWS_SAGEMAKERGEOSPATIAL_API CloudRemovalConfigInput(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue