Learn R Programming

paws.application.integration (version 0.1.5)

eventbridge_delete_rule: Deletes the specified rule

Description

Deletes the specified rule.

Usage

eventbridge_delete_rule(Name, EventBusName, Force)

Arguments

Name

[required] The name of the rule.

EventBusName

The event bus associated with the rule. If you omit this, the default event bus is used.

Force

If this is a managed rule, created by an AWS service on your behalf, you must specify Force as True 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 DescribeRule or ListRules and checking the ManagedBy field of the response.

Request syntax

svc$delete_rule(
  Name = "string",
  EventBusName = "string",
  Force = TRUE|FALSE
)

Details

Before you can delete the rule, you must remove all targets, using RemoveTargets.

When you delete a rule, incoming events might continue to match to the deleted rule. Allow a short period of time for changes to take effect.

Managed rules are rules created and managed by another AWS service on your behalf. These rules are created by those other AWS services to support functionality in those services. You can delete these rules using the Force option, but you should do so only if you're sure that the other service isn't still using that rule.