List Launch Actions
| drs_list_launch_actions | R Documentation |
Lists resource launch actions¶
Description¶
Lists resource launch actions.
Usage¶
Arguments¶
filtersFilters to apply when listing resource launch actions.
maxResultsMaximum amount of items to return when listing resource launch actions.
nextTokenNext token to use when listing resource launch actions.
resourceId[required]
Value¶
A list with the following syntax:
list(
items = list(
list(
actionCode = "string",
actionId = "string",
actionVersion = "string",
active = TRUE|FALSE,
category = "MONITORING"|"VALIDATION"|"CONFIGURATION"|"SECURITY"|"OTHER",
description = "string",
name = "string",
optional = TRUE|FALSE,
order = 123,
parameters = list(
list(
type = "SSM_STORE"|"DYNAMIC",
value = "string"
)
),
type = "SSM_AUTOMATION"|"SSM_COMMAND"
)
),
nextToken = "string"
)