/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the conditions that can be applied when matching a path for
* incoming requests.See Also:
AWS
* API Reference
Indicates whether the match is case sensitive. Defaults to false.
*/ inline bool GetCaseSensitive() const{ return m_caseSensitive; } /** *Indicates whether the match is case sensitive. Defaults to false.
*/ inline bool CaseSensitiveHasBeenSet() const { return m_caseSensitiveHasBeenSet; } /** *Indicates whether the match is case sensitive. Defaults to false.
*/ inline void SetCaseSensitive(bool value) { m_caseSensitiveHasBeenSet = true; m_caseSensitive = value; } /** *Indicates whether the match is case sensitive. Defaults to false.
*/ inline PathMatch& WithCaseSensitive(bool value) { SetCaseSensitive(value); return *this;} /** *The type of path match.
*/ inline const PathMatchType& GetMatch() const{ return m_match; } /** *The type of path match.
*/ inline bool MatchHasBeenSet() const { return m_matchHasBeenSet; } /** *The type of path match.
*/ inline void SetMatch(const PathMatchType& value) { m_matchHasBeenSet = true; m_match = value; } /** *The type of path match.
*/ inline void SetMatch(PathMatchType&& value) { m_matchHasBeenSet = true; m_match = std::move(value); } /** *The type of path match.
*/ inline PathMatch& WithMatch(const PathMatchType& value) { SetMatch(value); return *this;} /** *The type of path match.
*/ inline PathMatch& WithMatch(PathMatchType&& value) { SetMatch(std::move(value)); return *this;} private: bool m_caseSensitive; bool m_caseSensitiveHasBeenSet = false; PathMatchType m_match; bool m_matchHasBeenSet = false; }; } // namespace Model } // namespace VPCLattice } // namespace Aws