This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-events/include/aws/events/model/DeleteRuleRequest.h

182 lines
6.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/events/CloudWatchEvents_EXPORTS.h>
#include <aws/events/CloudWatchEventsRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace CloudWatchEvents
{
namespace Model
{
/**
*/
class AWS_CLOUDWATCHEVENTS_API DeleteRuleRequest : public CloudWatchEventsRequest
{
public:
DeleteRuleRequest();
// 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 "DeleteRule"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The name of the rule.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the rule.</p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>The name of the rule.</p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>The name of the rule.</p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>The name of the rule.</p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>The name of the rule.</p>
*/
inline DeleteRuleRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the rule.</p>
*/
inline DeleteRuleRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the rule.</p>
*/
inline DeleteRuleRequest& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>The event bus associated with the rule. If you omit this, the default event
* bus is used.</p>
*/
inline const Aws::String& GetEventBusName() const{ return m_eventBusName; }
/**
* <p>The event bus associated with the rule. If you omit this, the default event
* bus is used.</p>
*/
inline bool EventBusNameHasBeenSet() const { return m_eventBusNameHasBeenSet; }
/**
* <p>The event bus associated with the rule. If you omit this, the default event
* bus is used.</p>
*/
inline void SetEventBusName(const Aws::String& value) { m_eventBusNameHasBeenSet = true; m_eventBusName = value; }
/**
* <p>The event bus associated with the rule. If you omit this, the default event
* bus is used.</p>
*/
inline void SetEventBusName(Aws::String&& value) { m_eventBusNameHasBeenSet = true; m_eventBusName = std::move(value); }
/**
* <p>The event bus associated with the rule. If you omit this, the default event
* bus is used.</p>
*/
inline void SetEventBusName(const char* value) { m_eventBusNameHasBeenSet = true; m_eventBusName.assign(value); }
/**
* <p>The event bus associated with the rule. If you omit this, the default event
* bus is used.</p>
*/
inline DeleteRuleRequest& WithEventBusName(const Aws::String& value) { SetEventBusName(value); return *this;}
/**
* <p>The event bus associated with the rule. If you omit this, the default event
* bus is used.</p>
*/
inline DeleteRuleRequest& WithEventBusName(Aws::String&& value) { SetEventBusName(std::move(value)); return *this;}
/**
* <p>The event bus associated with the rule. If you omit this, the default event
* bus is used.</p>
*/
inline DeleteRuleRequest& WithEventBusName(const char* value) { SetEventBusName(value); return *this;}
/**
* <p>If this is a managed rule, created by an AWS service on your behalf, you must
* specify <code>Force</code> as <code>True</code> to delete the rule. This
* parameter is ignored for rules that are not managed rules. You can check whether
* a rule is a managed rule by using <code>DescribeRule</code> or
* <code>ListRules</code> and checking the <code>ManagedBy</code> field of the
* response.</p>
*/
inline bool GetForce() const{ return m_force; }
/**
* <p>If this is a managed rule, created by an AWS service on your behalf, you must
* specify <code>Force</code> as <code>True</code> to delete the rule. This
* parameter is ignored for rules that are not managed rules. You can check whether
* a rule is a managed rule by using <code>DescribeRule</code> or
* <code>ListRules</code> and checking the <code>ManagedBy</code> field of the
* response.</p>
*/
inline bool ForceHasBeenSet() const { return m_forceHasBeenSet; }
/**
* <p>If this is a managed rule, created by an AWS service on your behalf, you must
* specify <code>Force</code> as <code>True</code> to delete the rule. This
* parameter is ignored for rules that are not managed rules. You can check whether
* a rule is a managed rule by using <code>DescribeRule</code> or
* <code>ListRules</code> and checking the <code>ManagedBy</code> field of the
* response.</p>
*/
inline void SetForce(bool value) { m_forceHasBeenSet = true; m_force = value; }
/**
* <p>If this is a managed rule, created by an AWS service on your behalf, you must
* specify <code>Force</code> as <code>True</code> to delete the rule. This
* parameter is ignored for rules that are not managed rules. You can check whether
* a rule is a managed rule by using <code>DescribeRule</code> or
* <code>ListRules</code> and checking the <code>ManagedBy</code> field of the
* response.</p>
*/
inline DeleteRuleRequest& WithForce(bool value) { SetForce(value); return *this;}
private:
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_eventBusName;
bool m_eventBusNameHasBeenSet;
bool m_force;
bool m_forceHasBeenSet;
};
} // namespace Model
} // namespace CloudWatchEvents
} // namespace Aws