Values.RemoveTargetsRequestSourceRemoves the specified targets from the specified rule. When the rule is triggered, those targets are no longer be invoked. A successful execution of RemoveTargets doesn't guarantee all targets are removed from the rule, it means that the target(s) listed in the request are removed. When you remove a target, when the associated rule triggers, removed targets might continue to be invoked. Allow a short period of time for changes to take effect. This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code. The maximum number of entries per request is 10.
type nonrec t = {rule : RuleName.t;The name of the rule.
*)eventBusName : EventBusNameOrArn.t option;The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.
*)ids : TargetIdList.t;The IDs of the targets to remove from the rule.
*)force : Boolean.t option;If this is a managed rule, created by an Amazon Web Services service on your behalf, you must specify Force as True to remove targets. 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.
*)}val make :
?eventBusName:??? ->
?force:??? ->
rule:RuleName.t ->
ids:TargetIdList.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `List of [> `String of TargetId.t ] list
| `String of RuleName.t ])
list ]