/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a rule match.See Also:
AWS
* API Reference
The HTTP criteria that a rule must match.
*/ inline const HttpMatch& GetHttpMatch() const{ return m_httpMatch; } /** *The HTTP criteria that a rule must match.
*/ inline bool HttpMatchHasBeenSet() const { return m_httpMatchHasBeenSet; } /** *The HTTP criteria that a rule must match.
*/ inline void SetHttpMatch(const HttpMatch& value) { m_httpMatchHasBeenSet = true; m_httpMatch = value; } /** *The HTTP criteria that a rule must match.
*/ inline void SetHttpMatch(HttpMatch&& value) { m_httpMatchHasBeenSet = true; m_httpMatch = std::move(value); } /** *The HTTP criteria that a rule must match.
*/ inline RuleMatch& WithHttpMatch(const HttpMatch& value) { SetHttpMatch(value); return *this;} /** *The HTTP criteria that a rule must match.
*/ inline RuleMatch& WithHttpMatch(HttpMatch&& value) { SetHttpMatch(std::move(value)); return *this;} private: HttpMatch m_httpMatch; bool m_httpMatchHasBeenSet = false; }; } // namespace Model } // namespace VPCLattice } // namespace Aws