AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
CloudRemovalConfigInput.h
1
6#pragma once
7#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
8#include <aws/sagemaker-geospatial/model/AlgorithmNameCloudRemoval.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace SageMakerGeospatial
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_SAGEMAKERGEOSPATIAL_API CloudRemovalConfigInput() = default;
38 AWS_SAGEMAKERGEOSPATIAL_API CloudRemovalConfigInput(Aws::Utils::Json::JsonView jsonValue);
39 AWS_SAGEMAKERGEOSPATIAL_API CloudRemovalConfigInput& operator=(Aws::Utils::Json::JsonView jsonValue);
40 AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline AlgorithmNameCloudRemoval GetAlgorithmName() const { return m_algorithmName; }
48 inline bool AlgorithmNameHasBeenSet() const { return m_algorithmNameHasBeenSet; }
49 inline void SetAlgorithmName(AlgorithmNameCloudRemoval value) { m_algorithmNameHasBeenSet = true; m_algorithmName = value; }
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) { m_interpolationValueHasBeenSet = true; m_interpolationValue = std::forward<InterpolationValueT>(value); }
61 template<typename InterpolationValueT = Aws::String>
62 CloudRemovalConfigInput& WithInterpolationValue(InterpolationValueT&& value) { SetInterpolationValue(std::forward<InterpolationValueT>(value)); return *this;}
64
66
69 inline const Aws::Vector<Aws::String>& GetTargetBands() const { return m_targetBands; }
70 inline bool TargetBandsHasBeenSet() const { return m_targetBandsHasBeenSet; }
71 template<typename TargetBandsT = Aws::Vector<Aws::String>>
72 void SetTargetBands(TargetBandsT&& value) { m_targetBandsHasBeenSet = true; m_targetBands = std::forward<TargetBandsT>(value); }
73 template<typename TargetBandsT = Aws::Vector<Aws::String>>
74 CloudRemovalConfigInput& WithTargetBands(TargetBandsT&& value) { SetTargetBands(std::forward<TargetBandsT>(value)); return *this;}
75 template<typename TargetBandsT = Aws::String>
76 CloudRemovalConfigInput& AddTargetBands(TargetBandsT&& value) { m_targetBandsHasBeenSet = true; m_targetBands.emplace_back(std::forward<TargetBandsT>(value)); return *this; }
78 private:
79
81 bool m_algorithmNameHasBeenSet = false;
82
83 Aws::String m_interpolationValue;
84 bool m_interpolationValueHasBeenSet = false;
85
86 Aws::Vector<Aws::String> m_targetBands;
87 bool m_targetBandsHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace SageMakerGeospatial
92} // 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