/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the returned data in response to a request action.See
* Also:
AWS
* API Reference
A response indicating whether the rule set is valid.
*/ inline bool GetValid() const{ return m_valid; } /** *A response indicating whether the rule set is valid.
*/ inline void SetValid(bool value) { m_valid = value; } /** *A response indicating whether the rule set is valid.
*/ inline ValidateMatchmakingRuleSetResult& WithValid(bool value) { SetValid(value); return *this;} private: bool m_valid; }; } // namespace Model } // namespace GameLift } // namespace Aws