/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains configuration details for protected query output.See
* Also:
AWS
* API Reference
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