/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CleanRooms { namespace Model { /** *

Controls on the query specifications that can be run on configured * table..

See Also:

AWS * API Reference

*/ class AnalysisRulePolicy { public: AWS_CLEANROOMS_API AnalysisRulePolicy(); AWS_CLEANROOMS_API AnalysisRulePolicy(Aws::Utils::Json::JsonView jsonValue); AWS_CLEANROOMS_API AnalysisRulePolicy& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Controls on the query specifications that can be run on configured * table..

*/ inline const AnalysisRulePolicyV1& GetV1() const{ return m_v1; } /** *

Controls on the query specifications that can be run on configured * table..

*/ inline bool V1HasBeenSet() const { return m_v1HasBeenSet; } /** *

Controls on the query specifications that can be run on configured * table..

*/ inline void SetV1(const AnalysisRulePolicyV1& value) { m_v1HasBeenSet = true; m_v1 = value; } /** *

Controls on the query specifications that can be run on configured * table..

*/ inline void SetV1(AnalysisRulePolicyV1&& value) { m_v1HasBeenSet = true; m_v1 = std::move(value); } /** *

Controls on the query specifications that can be run on configured * table..

*/ inline AnalysisRulePolicy& WithV1(const AnalysisRulePolicyV1& value) { SetV1(value); return *this;} /** *

Controls on the query specifications that can be run on configured * table..

*/ inline AnalysisRulePolicy& WithV1(AnalysisRulePolicyV1&& value) { SetV1(std::move(value)); return *this;} private: AnalysisRulePolicyV1 m_v1; bool m_v1HasBeenSet = false; }; } // namespace Model } // namespace CleanRooms } // namespace Aws