/** * 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 configuration details for protected query output.

See * Also:

AWS * API Reference

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

Required configuration for a protected query with an `S3` output type.

*/ inline const ProtectedQueryS3OutputConfiguration& GetS3() const{ return m_s3; } /** *

Required configuration for a protected query with an `S3` output type.

*/ inline bool S3HasBeenSet() const { return m_s3HasBeenSet; } /** *

Required configuration for a protected query with an `S3` output type.

*/ inline void SetS3(const ProtectedQueryS3OutputConfiguration& value) { m_s3HasBeenSet = true; m_s3 = value; } /** *

Required configuration for a protected query with an `S3` output type.

*/ inline void SetS3(ProtectedQueryS3OutputConfiguration&& value) { m_s3HasBeenSet = true; m_s3 = std::move(value); } /** *

Required configuration for a protected query with an `S3` output type.

*/ inline ProtectedQueryOutputConfiguration& WithS3(const ProtectedQueryS3OutputConfiguration& value) { SetS3(value); return *this;} /** *

Required configuration for a protected query with an `S3` output type.

*/ inline ProtectedQueryOutputConfiguration& WithS3(ProtectedQueryS3OutputConfiguration&& value) { SetS3(std::move(value)); return *this;} private: ProtectedQueryS3OutputConfiguration m_s3; bool m_s3HasBeenSet = false; }; } // namespace Model } // namespace CleanRooms } // namespace Aws