/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Athena { namespace Model { /** */ class StopQueryExecutionRequest : public AthenaRequest { public: AWS_ATHENA_API StopQueryExecutionRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "StopQueryExecution"; } AWS_ATHENA_API Aws::String SerializePayload() const override; AWS_ATHENA_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The unique ID of the query execution to stop.

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

The unique ID of the query execution to stop.

*/ inline bool QueryExecutionIdHasBeenSet() const { return m_queryExecutionIdHasBeenSet; } /** *

The unique ID of the query execution to stop.

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

The unique ID of the query execution to stop.

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

The unique ID of the query execution to stop.

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

The unique ID of the query execution to stop.

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

The unique ID of the query execution to stop.

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

The unique ID of the query execution to stop.

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