102 lines
4.6 KiB
C++
102 lines
4.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/logs/CloudWatchLogs_EXPORTS.h>
|
|
#include <aws/logs/CloudWatchLogsRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace CloudWatchLogs
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_CLOUDWATCHLOGS_API DeleteQueryDefinitionRequest : public CloudWatchLogsRequest
|
|
{
|
|
public:
|
|
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::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The ID of the query definition that you want to delete. You can use <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeQueryDefinitions.html">DescribeQueryDefinitions</a>
|
|
* to retrieve the IDs of your saved query definitions.</p>
|
|
*/
|
|
inline const Aws::String& GetQueryDefinitionId() const{ return m_queryDefinitionId; }
|
|
|
|
/**
|
|
* <p>The ID of the query definition that you want to delete. You can use <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeQueryDefinitions.html">DescribeQueryDefinitions</a>
|
|
* to retrieve the IDs of your saved query definitions.</p>
|
|
*/
|
|
inline bool QueryDefinitionIdHasBeenSet() const { return m_queryDefinitionIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the query definition that you want to delete. You can use <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeQueryDefinitions.html">DescribeQueryDefinitions</a>
|
|
* to retrieve the IDs of your saved query definitions.</p>
|
|
*/
|
|
inline void SetQueryDefinitionId(const Aws::String& value) { m_queryDefinitionIdHasBeenSet = true; m_queryDefinitionId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the query definition that you want to delete. You can use <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeQueryDefinitions.html">DescribeQueryDefinitions</a>
|
|
* to retrieve the IDs of your saved query definitions.</p>
|
|
*/
|
|
inline void SetQueryDefinitionId(Aws::String&& value) { m_queryDefinitionIdHasBeenSet = true; m_queryDefinitionId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the query definition that you want to delete. You can use <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeQueryDefinitions.html">DescribeQueryDefinitions</a>
|
|
* to retrieve the IDs of your saved query definitions.</p>
|
|
*/
|
|
inline void SetQueryDefinitionId(const char* value) { m_queryDefinitionIdHasBeenSet = true; m_queryDefinitionId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the query definition that you want to delete. You can use <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeQueryDefinitions.html">DescribeQueryDefinitions</a>
|
|
* to retrieve the IDs of your saved query definitions.</p>
|
|
*/
|
|
inline DeleteQueryDefinitionRequest& WithQueryDefinitionId(const Aws::String& value) { SetQueryDefinitionId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the query definition that you want to delete. You can use <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeQueryDefinitions.html">DescribeQueryDefinitions</a>
|
|
* to retrieve the IDs of your saved query definitions.</p>
|
|
*/
|
|
inline DeleteQueryDefinitionRequest& WithQueryDefinitionId(Aws::String&& value) { SetQueryDefinitionId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the query definition that you want to delete. You can use <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeQueryDefinitions.html">DescribeQueryDefinitions</a>
|
|
* to retrieve the IDs of your saved query definitions.</p>
|
|
*/
|
|
inline DeleteQueryDefinitionRequest& WithQueryDefinitionId(const char* value) { SetQueryDefinitionId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_queryDefinitionId;
|
|
bool m_queryDefinitionIdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CloudWatchLogs
|
|
} // namespace Aws
|