/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details about the query results.See Also:
AWS
* API Reference
The output of the protected query.
*/ inline const ProtectedQueryOutput& GetOutput() const{ return m_output; } /** *The output of the protected query.
*/ inline bool OutputHasBeenSet() const { return m_outputHasBeenSet; } /** *The output of the protected query.
*/ inline void SetOutput(const ProtectedQueryOutput& value) { m_outputHasBeenSet = true; m_output = value; } /** *The output of the protected query.
*/ inline void SetOutput(ProtectedQueryOutput&& value) { m_outputHasBeenSet = true; m_output = std::move(value); } /** *The output of the protected query.
*/ inline ProtectedQueryResult& WithOutput(const ProtectedQueryOutput& value) { SetOutput(value); return *this;} /** *The output of the protected query.
*/ inline ProtectedQueryResult& WithOutput(ProtectedQueryOutput&& value) { SetOutput(std::move(value)); return *this;} private: ProtectedQueryOutput m_output; bool m_outputHasBeenSet = false; }; } // namespace Model } // namespace CleanRooms } // namespace Aws