Put Launch Action
| drs_put_launch_action | R Documentation | 
Puts a resource launch action¶
Description¶
Puts a resource launch action.
Usage¶
drs_put_launch_action(actionCode, actionId, actionVersion, active,
  category, description, name, optional, order, parameters, resourceId)
Arguments¶
actionCode | 
[required] Launch action code.  | 
actionId | 
[required]  | 
actionVersion | 
[required]  | 
active | 
[required] Whether the launch action is active.  | 
category | 
[required]  | 
description | 
[required]  | 
name | 
[required]  | 
optional | 
[required] Whether the launch will not be marked as failed if this action fails.  | 
order | 
[required]  | 
parameters | 
|
resourceId | 
[required]  | 
Value¶
A list with the following syntax:
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"
    )
  ),
  resourceId = "string",
  type = "SSM_AUTOMATION"|"SSM_COMMAND"
)
Request syntax¶
svc$put_launch_action(
  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"
    )
  ),
  resourceId = "string"
)