/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMakerGeospatial { namespace Model { /** *

The input structure for specifying ViewSunAzimuth property filter. * ViewSunAzimuth refers to the Sun azimuth angle. From the scene center point on * the ground, this is the angle between truth north and the sun. Measured * clockwise in degrees (0-360).

See Also:

AWS * API Reference

*/ class ViewSunAzimuthInput { public: AWS_SAGEMAKERGEOSPATIAL_API ViewSunAzimuthInput(); AWS_SAGEMAKERGEOSPATIAL_API ViewSunAzimuthInput(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKERGEOSPATIAL_API ViewSunAzimuthInput& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The minimum value for ViewSunAzimuth property filter. This filters items * having ViewSunAzimuth greater than or equal to this value.

*/ inline double GetLowerBound() const{ return m_lowerBound; } /** *

The minimum value for ViewSunAzimuth property filter. This filters items * having ViewSunAzimuth greater than or equal to this value.

*/ inline bool LowerBoundHasBeenSet() const { return m_lowerBoundHasBeenSet; } /** *

The minimum value for ViewSunAzimuth property filter. This filters items * having ViewSunAzimuth greater than or equal to this value.

*/ inline void SetLowerBound(double value) { m_lowerBoundHasBeenSet = true; m_lowerBound = value; } /** *

The minimum value for ViewSunAzimuth property filter. This filters items * having ViewSunAzimuth greater than or equal to this value.

*/ inline ViewSunAzimuthInput& WithLowerBound(double value) { SetLowerBound(value); return *this;} /** *

The maximum value for ViewSunAzimuth property filter. This filters items * having ViewSunAzimuth lesser than or equal to this value.

*/ inline double GetUpperBound() const{ return m_upperBound; } /** *

The maximum value for ViewSunAzimuth property filter. This filters items * having ViewSunAzimuth lesser than or equal to this value.

*/ inline bool UpperBoundHasBeenSet() const { return m_upperBoundHasBeenSet; } /** *

The maximum value for ViewSunAzimuth property filter. This filters items * having ViewSunAzimuth lesser than or equal to this value.

*/ inline void SetUpperBound(double value) { m_upperBoundHasBeenSet = true; m_upperBound = value; } /** *

The maximum value for ViewSunAzimuth property filter. This filters items * having ViewSunAzimuth lesser than or equal to this value.

*/ inline ViewSunAzimuthInput& WithUpperBound(double value) { SetUpperBound(value); return *this;} private: double m_lowerBound; bool m_lowerBoundHasBeenSet = false; double m_upperBound; bool m_upperBoundHasBeenSet = false; }; } // namespace Model } // namespace SageMakerGeospatial } // namespace Aws