/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that represents the range of values to match on. The first
* character of the range is included in the range, though the last character is
* not. For example, if the range specified were 1-100, only values 1-99 would be
* matched.See Also:
AWS
* API Reference
The end of the range.
*/ inline long long GetEnd() const{ return m_end; } /** *The end of the range.
*/ inline bool EndHasBeenSet() const { return m_endHasBeenSet; } /** *The end of the range.
*/ inline void SetEnd(long long value) { m_endHasBeenSet = true; m_end = value; } /** *The end of the range.
*/ inline MatchRange& WithEnd(long long value) { SetEnd(value); return *this;} /** *The start of the range.
*/ inline long long GetStart() const{ return m_start; } /** *The start of the range.
*/ inline bool StartHasBeenSet() const { return m_startHasBeenSet; } /** *The start of the range.
*/ inline void SetStart(long long value) { m_startHasBeenSet = true; m_start = value; } /** *The start of the range.
*/ inline MatchRange& WithStart(long long value) { SetStart(value); return *this;} private: long long m_end; bool m_endHasBeenSet = false; long long m_start; bool m_startHasBeenSet = false; }; } // namespace Model } // namespace AppMesh } // namespace Aws