AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
Property.h
1
6#pragma once
7#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
8#include <aws/sagemaker-geospatial/model/EoCloudCoverInput.h>
9#include <aws/sagemaker-geospatial/model/LandsatCloudCoverLandInput.h>
10#include <aws/sagemaker-geospatial/model/PlatformInput.h>
11#include <aws/sagemaker-geospatial/model/ViewOffNadirInput.h>
12#include <aws/sagemaker-geospatial/model/ViewSunAzimuthInput.h>
13#include <aws/sagemaker-geospatial/model/ViewSunElevationInput.h>
14#include <utility>
15
16namespace Aws
17{
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23 class JsonView;
24} // namespace Json
25} // namespace Utils
26namespace SageMakerGeospatial
27{
28namespace Model
29{
30
38 {
39 public:
40 AWS_SAGEMAKERGEOSPATIAL_API Property() = default;
41 AWS_SAGEMAKERGEOSPATIAL_API Property(Aws::Utils::Json::JsonView jsonValue);
42 AWS_SAGEMAKERGEOSPATIAL_API Property& operator=(Aws::Utils::Json::JsonView jsonValue);
43 AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const;
44
45
47
51 inline const EoCloudCoverInput& GetEoCloudCover() const { return m_eoCloudCover; }
52 inline bool EoCloudCoverHasBeenSet() const { return m_eoCloudCoverHasBeenSet; }
53 template<typename EoCloudCoverT = EoCloudCoverInput>
54 void SetEoCloudCover(EoCloudCoverT&& value) { m_eoCloudCoverHasBeenSet = true; m_eoCloudCover = std::forward<EoCloudCoverT>(value); }
55 template<typename EoCloudCoverT = EoCloudCoverInput>
56 Property& WithEoCloudCover(EoCloudCoverT&& value) { SetEoCloudCover(std::forward<EoCloudCoverT>(value)); return *this;}
58
60
64 inline const LandsatCloudCoverLandInput& GetLandsatCloudCoverLand() const { return m_landsatCloudCoverLand; }
65 inline bool LandsatCloudCoverLandHasBeenSet() const { return m_landsatCloudCoverLandHasBeenSet; }
66 template<typename LandsatCloudCoverLandT = LandsatCloudCoverLandInput>
67 void SetLandsatCloudCoverLand(LandsatCloudCoverLandT&& value) { m_landsatCloudCoverLandHasBeenSet = true; m_landsatCloudCoverLand = std::forward<LandsatCloudCoverLandT>(value); }
68 template<typename LandsatCloudCoverLandT = LandsatCloudCoverLandInput>
69 Property& WithLandsatCloudCoverLand(LandsatCloudCoverLandT&& value) { SetLandsatCloudCoverLand(std::forward<LandsatCloudCoverLandT>(value)); return *this;}
71
73
77 inline const PlatformInput& GetPlatform() const { return m_platform; }
78 inline bool PlatformHasBeenSet() const { return m_platformHasBeenSet; }
79 template<typename PlatformT = PlatformInput>
80 void SetPlatform(PlatformT&& value) { m_platformHasBeenSet = true; m_platform = std::forward<PlatformT>(value); }
81 template<typename PlatformT = PlatformInput>
82 Property& WithPlatform(PlatformT&& value) { SetPlatform(std::forward<PlatformT>(value)); return *this;}
84
86
90 inline const ViewOffNadirInput& GetViewOffNadir() const { return m_viewOffNadir; }
91 inline bool ViewOffNadirHasBeenSet() const { return m_viewOffNadirHasBeenSet; }
92 template<typename ViewOffNadirT = ViewOffNadirInput>
93 void SetViewOffNadir(ViewOffNadirT&& value) { m_viewOffNadirHasBeenSet = true; m_viewOffNadir = std::forward<ViewOffNadirT>(value); }
94 template<typename ViewOffNadirT = ViewOffNadirInput>
95 Property& WithViewOffNadir(ViewOffNadirT&& value) { SetViewOffNadir(std::forward<ViewOffNadirT>(value)); return *this;}
97
99
103 inline const ViewSunAzimuthInput& GetViewSunAzimuth() const { return m_viewSunAzimuth; }
104 inline bool ViewSunAzimuthHasBeenSet() const { return m_viewSunAzimuthHasBeenSet; }
105 template<typename ViewSunAzimuthT = ViewSunAzimuthInput>
106 void SetViewSunAzimuth(ViewSunAzimuthT&& value) { m_viewSunAzimuthHasBeenSet = true; m_viewSunAzimuth = std::forward<ViewSunAzimuthT>(value); }
107 template<typename ViewSunAzimuthT = ViewSunAzimuthInput>
108 Property& WithViewSunAzimuth(ViewSunAzimuthT&& value) { SetViewSunAzimuth(std::forward<ViewSunAzimuthT>(value)); return *this;}
110
112
116 inline const ViewSunElevationInput& GetViewSunElevation() const { return m_viewSunElevation; }
117 inline bool ViewSunElevationHasBeenSet() const { return m_viewSunElevationHasBeenSet; }
118 template<typename ViewSunElevationT = ViewSunElevationInput>
119 void SetViewSunElevation(ViewSunElevationT&& value) { m_viewSunElevationHasBeenSet = true; m_viewSunElevation = std::forward<ViewSunElevationT>(value); }
120 template<typename ViewSunElevationT = ViewSunElevationInput>
121 Property& WithViewSunElevation(ViewSunElevationT&& value) { SetViewSunElevation(std::forward<ViewSunElevationT>(value)); return *this;}
123 private:
124
125 EoCloudCoverInput m_eoCloudCover;
126 bool m_eoCloudCoverHasBeenSet = false;
127
128 LandsatCloudCoverLandInput m_landsatCloudCoverLand;
129 bool m_landsatCloudCoverLandHasBeenSet = false;
130
131 PlatformInput m_platform;
132 bool m_platformHasBeenSet = false;
133
134 ViewOffNadirInput m_viewOffNadir;
135 bool m_viewOffNadirHasBeenSet = false;
136
137 ViewSunAzimuthInput m_viewSunAzimuth;
138 bool m_viewSunAzimuthHasBeenSet = false;
139
140 ViewSunElevationInput m_viewSunElevation;
141 bool m_viewSunElevationHasBeenSet = false;
142 };
143
144} // namespace Model
145} // namespace SageMakerGeospatial
146} // namespace Aws
const PlatformInput & GetPlatform() const
Definition Property.h:77
const ViewSunElevationInput & GetViewSunElevation() const
Definition Property.h:116
AWS_SAGEMAKERGEOSPATIAL_API Property & operator=(Aws::Utils::Json::JsonView jsonValue)
Property & WithEoCloudCover(EoCloudCoverT &&value)
Definition Property.h:56
void SetPlatform(PlatformT &&value)
Definition Property.h:80
AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const
void SetViewOffNadir(ViewOffNadirT &&value)
Definition Property.h:93
Property & WithViewOffNadir(ViewOffNadirT &&value)
Definition Property.h:95
AWS_SAGEMAKERGEOSPATIAL_API Property(Aws::Utils::Json::JsonView jsonValue)
const ViewSunAzimuthInput & GetViewSunAzimuth() const
Definition Property.h:103
void SetEoCloudCover(EoCloudCoverT &&value)
Definition Property.h:54
Property & WithViewSunElevation(ViewSunElevationT &&value)
Definition Property.h:121
Property & WithViewSunAzimuth(ViewSunAzimuthT &&value)
Definition Property.h:108
void SetViewSunElevation(ViewSunElevationT &&value)
Definition Property.h:119
void SetViewSunAzimuth(ViewSunAzimuthT &&value)
Definition Property.h:106
AWS_SAGEMAKERGEOSPATIAL_API Property()=default
const LandsatCloudCoverLandInput & GetLandsatCloudCoverLand() const
Definition Property.h:64
const EoCloudCoverInput & GetEoCloudCover() const
Definition Property.h:51
const ViewOffNadirInput & GetViewOffNadir() const
Definition Property.h:90
Property & WithLandsatCloudCoverLand(LandsatCloudCoverLandT &&value)
Definition Property.h:69
void SetLandsatCloudCoverLand(LandsatCloudCoverLandT &&value)
Definition Property.h:67
Property & WithPlatform(PlatformT &&value)
Definition Property.h:82
Aws::Utils::Json::JsonValue JsonValue