Get Action
fis_get_action | R Documentation |
Gets information about the specified FIS action¶
Description¶
Gets information about the specified FIS action.
Usage¶
Arguments¶
id
[required] The ID of the action.
Value¶
A list with the following syntax:
list(
action = list(
id = "string",
arn = "string",
description = "string",
parameters = list(
list(
description = "string",
required = TRUE|FALSE
)
),
targets = list(
list(
resourceType = "string"
)
),
tags = list(
"string"
)
)
)