/** * 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 ViewOffNadir property filter. ViewOffNadir * refers to the angle from the sensor between nadir (straight down) and the scene * center. Measured in degrees (0-90).

See Also:

AWS * API Reference

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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