List Launch Actions
| drs_list_launch_actions | R Documentation | 
Lists resource launch actions¶
Description¶
Lists resource launch actions.
Usage¶
drs_list_launch_actions(filters, maxResults, nextToken, resourceId)
Arguments¶
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.  | 
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"
)
Request syntax¶
svc$list_launch_actions(
  filters = list(
    actionIds = list(
      "string"
    )
  ),
  maxResults = 123,
  nextToken = "string",
  resourceId = "string"
)