/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace CloudWatchLogs { namespace Model { /** */ class DeleteQueryDefinitionRequest : public CloudWatchLogsRequest { public: AWS_CLOUDWATCHLOGS_API DeleteQueryDefinitionRequest(); // 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 "DeleteQueryDefinition"; } AWS_CLOUDWATCHLOGS_API Aws::String SerializePayload() const override; AWS_CLOUDWATCHLOGS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ID of the query definition that you want to delete. You can use DescribeQueryDefinitions * to retrieve the IDs of your saved query definitions.

*/ inline const Aws::String& GetQueryDefinitionId() const{ return m_queryDefinitionId; } /** *

The ID of the query definition that you want to delete. You can use DescribeQueryDefinitions * to retrieve the IDs of your saved query definitions.

*/ inline bool QueryDefinitionIdHasBeenSet() const { return m_queryDefinitionIdHasBeenSet; } /** *

The ID of the query definition that you want to delete. You can use DescribeQueryDefinitions * to retrieve the IDs of your saved query definitions.

*/ inline void SetQueryDefinitionId(const Aws::String& value) { m_queryDefinitionIdHasBeenSet = true; m_queryDefinitionId = value; } /** *

The ID of the query definition that you want to delete. You can use DescribeQueryDefinitions * to retrieve the IDs of your saved query definitions.

*/ inline void SetQueryDefinitionId(Aws::String&& value) { m_queryDefinitionIdHasBeenSet = true; m_queryDefinitionId = std::move(value); } /** *

The ID of the query definition that you want to delete. You can use DescribeQueryDefinitions * to retrieve the IDs of your saved query definitions.

*/ inline void SetQueryDefinitionId(const char* value) { m_queryDefinitionIdHasBeenSet = true; m_queryDefinitionId.assign(value); } /** *

The ID of the query definition that you want to delete. You can use DescribeQueryDefinitions * to retrieve the IDs of your saved query definitions.

*/ inline DeleteQueryDefinitionRequest& WithQueryDefinitionId(const Aws::String& value) { SetQueryDefinitionId(value); return *this;} /** *

The ID of the query definition that you want to delete. You can use DescribeQueryDefinitions * to retrieve the IDs of your saved query definitions.

*/ inline DeleteQueryDefinitionRequest& WithQueryDefinitionId(Aws::String&& value) { SetQueryDefinitionId(std::move(value)); return *this;} /** *

The ID of the query definition that you want to delete. You can use DescribeQueryDefinitions * to retrieve the IDs of your saved query definitions.

*/ inline DeleteQueryDefinitionRequest& WithQueryDefinitionId(const char* value) { SetQueryDefinitionId(value); return *this;} private: Aws::String m_queryDefinitionId; bool m_queryDefinitionIdHasBeenSet = false; }; } // namespace Model } // namespace CloudWatchLogs } // namespace Aws