/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Athena { namespace Model { class AWS_ATHENA_API GetQueryExecutionResult { public: GetQueryExecutionResult(); GetQueryExecutionResult(const Aws::AmazonWebServiceResult& result); GetQueryExecutionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the query execution.

*/ inline const QueryExecution& GetQueryExecution() const{ return m_queryExecution; } /** *

Information about the query execution.

*/ inline void SetQueryExecution(const QueryExecution& value) { m_queryExecution = value; } /** *

Information about the query execution.

*/ inline void SetQueryExecution(QueryExecution&& value) { m_queryExecution = std::move(value); } /** *

Information about the query execution.

*/ inline GetQueryExecutionResult& WithQueryExecution(const QueryExecution& value) { SetQueryExecution(value); return *this;} /** *

Information about the query execution.

*/ inline GetQueryExecutionResult& WithQueryExecution(QueryExecution&& value) { SetQueryExecution(std::move(value)); return *this;} private: QueryExecution m_queryExecution; }; } // namespace Model } // namespace Athena } // namespace Aws