/** * 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 a configured * table.

See Also:

AWS * API Reference

*/ class ConfiguredTableAnalysisRulePolicy { public: AWS_CLEANROOMS_API ConfiguredTableAnalysisRulePolicy(); AWS_CLEANROOMS_API ConfiguredTableAnalysisRulePolicy(Aws::Utils::Json::JsonView jsonValue); AWS_CLEANROOMS_API ConfiguredTableAnalysisRulePolicy& 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 a configured * table.

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

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

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

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

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

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

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

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

*/ inline ConfiguredTableAnalysisRulePolicy& WithV1(const ConfiguredTableAnalysisRulePolicyV1& value) { SetV1(value); return *this;} /** *

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

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