Describe Action Targets
securityhub_describe_action_targets | R Documentation |
Returns a list of the custom action targets in Security Hub in your account¶
Description¶
Returns a list of the custom action targets in Security Hub in your account.
Usage¶
securityhub_describe_action_targets(ActionTargetArns, NextToken,
MaxResults)
Arguments¶
ActionTargetArns |
A list of custom action target ARNs for the custom action targets to retrieve. |
NextToken |
The token that is required for pagination. On your first call to
the For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response. |
MaxResults |
The maximum number of results to return. |
Value¶
A list with the following syntax:
list(
ActionTargets = list(
list(
ActionTargetArn = "string",
Name = "string",
Description = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_action_targets(
ActionTargetArns = list(
"string"
),
NextToken = "string",
MaxResults = 123
)