/** * 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 structure representing Land Cloud Cover property for Landsat data * collection.

See Also:

AWS * API Reference

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

The minimum value for Land Cloud Cover property filter. This will filter * items having Land Cloud Cover greater than or equal to this value.

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

The minimum value for Land Cloud Cover property filter. This will filter * items having Land Cloud Cover greater than or equal to this value.

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

The minimum value for Land Cloud Cover property filter. This will filter * items having Land Cloud Cover greater than or equal to this value.

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

The minimum value for Land Cloud Cover property filter. This will filter * items having Land Cloud Cover greater than or equal to this value.

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

The maximum value for Land Cloud Cover property filter. This will filter * items having Land Cloud Cover less than or equal to this value.

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

The maximum value for Land Cloud Cover property filter. This will filter * items having Land Cloud Cover less than or equal to this value.

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

The maximum value for Land Cloud Cover property filter. This will filter * items having Land Cloud Cover less than or equal to this value.

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

The maximum value for Land Cloud Cover property filter. This will filter * items having Land Cloud Cover less than or equal to this value.

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