/** * 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 ViewSunElevation angle property filter. *

See Also:

AWS * API Reference

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

The lower bound to view the sun elevation.

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

The lower bound to view the sun elevation.

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

The lower bound to view the sun elevation.

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

The lower bound to view the sun elevation.

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

The upper bound to view the sun elevation.

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

The upper bound to view the sun elevation.

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

The upper bound to view the sun elevation.

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

The upper bound to view the sun elevation.

*/ inline ViewSunElevationInput& 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