/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The structure representing Land Cloud Cover property for Landsat data
* collection.See Also:
AWS
* API Reference
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