/** * 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 { /** *

Contains configurations for protected query results.

See Also:

* AWS * API Reference

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

Configuration for protected query results.

*/ inline const ProtectedQueryOutputConfiguration& GetOutputConfiguration() const{ return m_outputConfiguration; } /** *

Configuration for protected query results.

*/ inline bool OutputConfigurationHasBeenSet() const { return m_outputConfigurationHasBeenSet; } /** *

Configuration for protected query results.

*/ inline void SetOutputConfiguration(const ProtectedQueryOutputConfiguration& value) { m_outputConfigurationHasBeenSet = true; m_outputConfiguration = value; } /** *

Configuration for protected query results.

*/ inline void SetOutputConfiguration(ProtectedQueryOutputConfiguration&& value) { m_outputConfigurationHasBeenSet = true; m_outputConfiguration = std::move(value); } /** *

Configuration for protected query results.

*/ inline ProtectedQueryResultConfiguration& WithOutputConfiguration(const ProtectedQueryOutputConfiguration& value) { SetOutputConfiguration(value); return *this;} /** *

Configuration for protected query results.

*/ inline ProtectedQueryResultConfiguration& WithOutputConfiguration(ProtectedQueryOutputConfiguration&& value) { SetOutputConfiguration(std::move(value)); return *this;} private: ProtectedQueryOutputConfiguration m_outputConfiguration; bool m_outputConfigurationHasBeenSet = false; }; } // namespace Model } // namespace CleanRooms } // namespace Aws