/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The structure representing the EoCloudCover filter.See Also:
* AWS
* API Reference
Lower bound for EoCloudCover.
*/ inline double GetLowerBound() const{ return m_lowerBound; } /** *Lower bound for EoCloudCover.
*/ inline bool LowerBoundHasBeenSet() const { return m_lowerBoundHasBeenSet; } /** *Lower bound for EoCloudCover.
*/ inline void SetLowerBound(double value) { m_lowerBoundHasBeenSet = true; m_lowerBound = value; } /** *Lower bound for EoCloudCover.
*/ inline EoCloudCoverInput& WithLowerBound(double value) { SetLowerBound(value); return *this;} /** *Upper bound for EoCloudCover.
*/ inline double GetUpperBound() const{ return m_upperBound; } /** *Upper bound for EoCloudCover.
*/ inline bool UpperBoundHasBeenSet() const { return m_upperBoundHasBeenSet; } /** *Upper bound for EoCloudCover.
*/ inline void SetUpperBound(double value) { m_upperBoundHasBeenSet = true; m_upperBound = value; } /** *Upper bound for EoCloudCover.
*/ inline EoCloudCoverInput& 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