AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ResamplingConfigInput.h
1
6#pragma once
7#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
8#include <aws/sagemaker-geospatial/model/AlgorithmNameResampling.h>
9#include <aws/sagemaker-geospatial/model/OutputResolutionResamplingInput.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/core/utils/memory/stl/AWSString.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace SageMakerGeospatial
25{
26namespace Model
27{
28
36 {
37 public:
38 AWS_SAGEMAKERGEOSPATIAL_API ResamplingConfigInput();
39 AWS_SAGEMAKERGEOSPATIAL_API ResamplingConfigInput(Aws::Utils::Json::JsonView jsonValue);
40 AWS_SAGEMAKERGEOSPATIAL_API ResamplingConfigInput& operator=(Aws::Utils::Json::JsonView jsonValue);
41 AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const AlgorithmNameResampling& GetAlgorithmName() const{ return m_algorithmName; }
49 inline bool AlgorithmNameHasBeenSet() const { return m_algorithmNameHasBeenSet; }
50 inline void SetAlgorithmName(const AlgorithmNameResampling& value) { m_algorithmNameHasBeenSet = true; m_algorithmName = value; }
51 inline void SetAlgorithmName(AlgorithmNameResampling&& value) { m_algorithmNameHasBeenSet = true; m_algorithmName = std::move(value); }
53 inline ResamplingConfigInput& WithAlgorithmName(AlgorithmNameResampling&& value) { SetAlgorithmName(std::move(value)); return *this;}
55
57
61 inline const OutputResolutionResamplingInput& GetOutputResolution() const{ return m_outputResolution; }
62 inline bool OutputResolutionHasBeenSet() const { return m_outputResolutionHasBeenSet; }
63 inline void SetOutputResolution(const OutputResolutionResamplingInput& value) { m_outputResolutionHasBeenSet = true; m_outputResolution = value; }
64 inline void SetOutputResolution(OutputResolutionResamplingInput&& value) { m_outputResolutionHasBeenSet = true; m_outputResolution = std::move(value); }
68
70
74 inline const Aws::Vector<Aws::String>& GetTargetBands() const{ return m_targetBands; }
75 inline bool TargetBandsHasBeenSet() const { return m_targetBandsHasBeenSet; }
76 inline void SetTargetBands(const Aws::Vector<Aws::String>& value) { m_targetBandsHasBeenSet = true; m_targetBands = value; }
77 inline void SetTargetBands(Aws::Vector<Aws::String>&& value) { m_targetBandsHasBeenSet = true; m_targetBands = std::move(value); }
79 inline ResamplingConfigInput& WithTargetBands(Aws::Vector<Aws::String>&& value) { SetTargetBands(std::move(value)); return *this;}
80 inline ResamplingConfigInput& AddTargetBands(const Aws::String& value) { m_targetBandsHasBeenSet = true; m_targetBands.push_back(value); return *this; }
81 inline ResamplingConfigInput& AddTargetBands(Aws::String&& value) { m_targetBandsHasBeenSet = true; m_targetBands.push_back(std::move(value)); return *this; }
82 inline ResamplingConfigInput& AddTargetBands(const char* value) { m_targetBandsHasBeenSet = true; m_targetBands.push_back(value); return *this; }
84 private:
85
86 AlgorithmNameResampling m_algorithmName;
87 bool m_algorithmNameHasBeenSet = false;
88
89 OutputResolutionResamplingInput m_outputResolution;
90 bool m_outputResolutionHasBeenSet = false;
91
92 Aws::Vector<Aws::String> m_targetBands;
93 bool m_targetBandsHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace SageMakerGeospatial
98} // namespace Aws
ResamplingConfigInput & WithTargetBands(Aws::Vector< Aws::String > &&value)
void SetTargetBands(const Aws::Vector< Aws::String > &value)
ResamplingConfigInput & WithAlgorithmName(AlgorithmNameResampling &&value)
const Aws::Vector< Aws::String > & GetTargetBands() const
AWS_SAGEMAKERGEOSPATIAL_API ResamplingConfigInput & operator=(Aws::Utils::Json::JsonView jsonValue)
const AlgorithmNameResampling & GetAlgorithmName() const
ResamplingConfigInput & AddTargetBands(const char *value)
AWS_SAGEMAKERGEOSPATIAL_API ResamplingConfigInput(Aws::Utils::Json::JsonView jsonValue)
void SetAlgorithmName(const AlgorithmNameResampling &value)
ResamplingConfigInput & WithAlgorithmName(const AlgorithmNameResampling &value)
void SetOutputResolution(OutputResolutionResamplingInput &&value)
ResamplingConfigInput & WithOutputResolution(OutputResolutionResamplingInput &&value)
AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const
void SetOutputResolution(const OutputResolutionResamplingInput &value)
ResamplingConfigInput & WithOutputResolution(const OutputResolutionResamplingInput &value)
ResamplingConfigInput & AddTargetBands(Aws::String &&value)
void SetTargetBands(Aws::Vector< Aws::String > &&value)
const OutputResolutionResamplingInput & GetOutputResolution() const
ResamplingConfigInput & AddTargetBands(const Aws::String &value)
ResamplingConfigInput & WithTargetBands(const Aws::Vector< Aws::String > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue