AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetEoCloudCover(const EoCloudCoverInput& value) { m_eoCloudCoverHasBeenSet = true; m_eoCloudCover = value; }
54 inline void SetEoCloudCover(EoCloudCoverInput&& value) { m_eoCloudCoverHasBeenSet = true; m_eoCloudCover = std::move(value); }
55 inline Property& WithEoCloudCover(const EoCloudCoverInput& value) { SetEoCloudCover(value); return *this;}
56 inline Property& WithEoCloudCover(EoCloudCoverInput&& value) { SetEoCloudCover(std::move(value)); return *this;}
58
60
64 inline const LandsatCloudCoverLandInput& GetLandsatCloudCoverLand() const{ return m_landsatCloudCoverLand; }
65 inline bool LandsatCloudCoverLandHasBeenSet() const { return m_landsatCloudCoverLandHasBeenSet; }
66 inline void SetLandsatCloudCoverLand(const LandsatCloudCoverLandInput& value) { m_landsatCloudCoverLandHasBeenSet = true; m_landsatCloudCoverLand = value; }
67 inline void SetLandsatCloudCoverLand(LandsatCloudCoverLandInput&& value) { m_landsatCloudCoverLandHasBeenSet = true; m_landsatCloudCoverLand = std::move(value); }
71
73
77 inline const PlatformInput& GetPlatform() const{ return m_platform; }
78 inline bool PlatformHasBeenSet() const { return m_platformHasBeenSet; }
79 inline void SetPlatform(const PlatformInput& value) { m_platformHasBeenSet = true; m_platform = value; }
80 inline void SetPlatform(PlatformInput&& value) { m_platformHasBeenSet = true; m_platform = std::move(value); }
81 inline Property& WithPlatform(const PlatformInput& value) { SetPlatform(value); return *this;}
82 inline Property& WithPlatform(PlatformInput&& value) { SetPlatform(std::move(value)); return *this;}
84
86
90 inline const ViewOffNadirInput& GetViewOffNadir() const{ return m_viewOffNadir; }
91 inline bool ViewOffNadirHasBeenSet() const { return m_viewOffNadirHasBeenSet; }
92 inline void SetViewOffNadir(const ViewOffNadirInput& value) { m_viewOffNadirHasBeenSet = true; m_viewOffNadir = value; }
93 inline void SetViewOffNadir(ViewOffNadirInput&& value) { m_viewOffNadirHasBeenSet = true; m_viewOffNadir = std::move(value); }
94 inline Property& WithViewOffNadir(const ViewOffNadirInput& value) { SetViewOffNadir(value); return *this;}
95 inline Property& WithViewOffNadir(ViewOffNadirInput&& value) { SetViewOffNadir(std::move(value)); return *this;}
97
99
103 inline const ViewSunAzimuthInput& GetViewSunAzimuth() const{ return m_viewSunAzimuth; }
104 inline bool ViewSunAzimuthHasBeenSet() const { return m_viewSunAzimuthHasBeenSet; }
105 inline void SetViewSunAzimuth(const ViewSunAzimuthInput& value) { m_viewSunAzimuthHasBeenSet = true; m_viewSunAzimuth = value; }
106 inline void SetViewSunAzimuth(ViewSunAzimuthInput&& value) { m_viewSunAzimuthHasBeenSet = true; m_viewSunAzimuth = std::move(value); }
107 inline Property& WithViewSunAzimuth(const ViewSunAzimuthInput& value) { SetViewSunAzimuth(value); return *this;}
108 inline Property& WithViewSunAzimuth(ViewSunAzimuthInput&& value) { SetViewSunAzimuth(std::move(value)); return *this;}
110
112
116 inline const ViewSunElevationInput& GetViewSunElevation() const{ return m_viewSunElevation; }
117 inline bool ViewSunElevationHasBeenSet() const { return m_viewSunElevationHasBeenSet; }
118 inline void SetViewSunElevation(const ViewSunElevationInput& value) { m_viewSunElevationHasBeenSet = true; m_viewSunElevation = value; }
119 inline void SetViewSunElevation(ViewSunElevationInput&& value) { m_viewSunElevationHasBeenSet = true; m_viewSunElevation = std::move(value); }
120 inline Property& WithViewSunElevation(const ViewSunElevationInput& value) { SetViewSunElevation(value); return *this;}
121 inline Property& WithViewSunElevation(ViewSunElevationInput&& value) { SetViewSunElevation(std::move(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 & WithLandsatCloudCoverLand(const LandsatCloudCoverLandInput &value)
Definition Property.h:68
AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const
Property & WithViewSunElevation(const ViewSunElevationInput &value)
Definition Property.h:120
void SetEoCloudCover(const EoCloudCoverInput &value)
Definition Property.h:53
Property & WithEoCloudCover(const EoCloudCoverInput &value)
Definition Property.h:55
AWS_SAGEMAKERGEOSPATIAL_API Property(Aws::Utils::Json::JsonView jsonValue)
void SetViewOffNadir(const ViewOffNadirInput &value)
Definition Property.h:92
void SetEoCloudCover(EoCloudCoverInput &&value)
Definition Property.h:54
const ViewSunAzimuthInput & GetViewSunAzimuth() const
Definition Property.h:103
void SetLandsatCloudCoverLand(LandsatCloudCoverLandInput &&value)
Definition Property.h:67
Property & WithViewSunAzimuth(const ViewSunAzimuthInput &value)
Definition Property.h:107
Property & WithViewSunAzimuth(ViewSunAzimuthInput &&value)
Definition Property.h:108
void SetPlatform(const PlatformInput &value)
Definition Property.h:79
void SetViewSunAzimuth(ViewSunAzimuthInput &&value)
Definition Property.h:106
Property & WithViewOffNadir(const ViewOffNadirInput &value)
Definition Property.h:94
void SetViewSunElevation(const ViewSunElevationInput &value)
Definition Property.h:118
void SetViewSunElevation(ViewSunElevationInput &&value)
Definition Property.h:119
Property & WithPlatform(PlatformInput &&value)
Definition Property.h:82
Property & WithViewSunElevation(ViewSunElevationInput &&value)
Definition Property.h:121
AWS_SAGEMAKERGEOSPATIAL_API Property()
const LandsatCloudCoverLandInput & GetLandsatCloudCoverLand() const
Definition Property.h:64
void SetLandsatCloudCoverLand(const LandsatCloudCoverLandInput &value)
Definition Property.h:66
const EoCloudCoverInput & GetEoCloudCover() const
Definition Property.h:51
Property & WithLandsatCloudCoverLand(LandsatCloudCoverLandInput &&value)
Definition Property.h:69
const ViewOffNadirInput & GetViewOffNadir() const
Definition Property.h:90
Property & WithPlatform(const PlatformInput &value)
Definition Property.h:81
Property & WithEoCloudCover(EoCloudCoverInput &&value)
Definition Property.h:56
Property & WithViewOffNadir(ViewOffNadirInput &&value)
Definition Property.h:95
void SetPlatform(PlatformInput &&value)
Definition Property.h:80
void SetViewSunAzimuth(const ViewSunAzimuthInput &value)
Definition Property.h:105
void SetViewOffNadir(ViewOffNadirInput &&value)
Definition Property.h:93
Aws::Utils::Json::JsonValue JsonValue