/** * 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 StartQueryExecutionResult { public: StartQueryExecutionResult(); StartQueryExecutionResult(const Aws::AmazonWebServiceResult& result); StartQueryExecutionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The unique ID of the query that ran as a result of this request.

*/ inline const Aws::String& GetQueryExecutionId() const{ return m_queryExecutionId; } /** *

The unique ID of the query that ran as a result of this request.

*/ inline void SetQueryExecutionId(const Aws::String& value) { m_queryExecutionId = value; } /** *

The unique ID of the query that ran as a result of this request.

*/ inline void SetQueryExecutionId(Aws::String&& value) { m_queryExecutionId = std::move(value); } /** *

The unique ID of the query that ran as a result of this request.

*/ inline void SetQueryExecutionId(const char* value) { m_queryExecutionId.assign(value); } /** *

The unique ID of the query that ran as a result of this request.

*/ inline StartQueryExecutionResult& WithQueryExecutionId(const Aws::String& value) { SetQueryExecutionId(value); return *this;} /** *

The unique ID of the query that ran as a result of this request.

*/ inline StartQueryExecutionResult& WithQueryExecutionId(Aws::String&& value) { SetQueryExecutionId(std::move(value)); return *this;} /** *

The unique ID of the query that ran as a result of this request.

*/ inline StartQueryExecutionResult& WithQueryExecutionId(const char* value) { SetQueryExecutionId(value); return *this;} private: Aws::String m_queryExecutionId; }; } // namespace Model } // namespace Athena } // namespace Aws