Update Action Target
| securityhub_update_action_target | R Documentation |
Updates the name and description of a custom action target in Security Hub¶
Description¶
Updates the name and description of a custom action target in Security Hub.
Usage¶
Arguments¶
ActionTargetArn[required] The ARN of the custom action target to update.
NameThe updated name of the custom action target.
DescriptionThe updated description for the custom action target.
Value¶
An empty list.
Request syntax¶
Examples¶
## Not run:
# The following example updates the name and description of a custom
# action target in Security Hub. You can create custom actions to
# automatically respond to Security Hub findings using Amazon EventBridge.
svc$update_action_target(
ActionTargetArn = "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation",
Description = "Sends specified findings to customer service chat",
Name = "Chat custom action"
)
## End(Not run)