List Launch Actions
| drs_list_launch_actions | R Documentation |
Lists resource launch actions¶
Description¶
Lists resource launch actions.
Usage¶
drs_list_launch_actions(resourceId, filters, maxResults, nextToken)
Arguments¶
resourceId |
[required] Launch configuration template Id or Source Server Id |
filters |
Filters to apply when listing resource launch actions. |
maxResults |
Maximum amount of items to return when listing resource launch actions. |
nextToken |
Next token to use when listing resource launch actions. |
Value¶
A list with the following syntax:
list(
items = list(
list(
actionId = "string",
actionCode = "string",
type = "SSM_AUTOMATION"|"SSM_COMMAND",
name = "string",
active = TRUE|FALSE,
order = 123,
actionVersion = "string",
optional = TRUE|FALSE,
parameters = list(
list(
value = "string",
type = "SSM_STORE"|"DYNAMIC"
)
),
description = "string",
category = "MONITORING"|"VALIDATION"|"CONFIGURATION"|"SECURITY"|"OTHER"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_launch_actions(
resourceId = "string",
filters = list(
actionIds = list(
"string"
)
),
maxResults = 123,
nextToken = "string"
)