Update Safety Lever State
fis_update_safety_lever_state | R Documentation |
Updates the specified safety lever state¶
Description¶
Updates the specified safety lever state.
Usage¶
fis_update_safety_lever_state(id, state)
Arguments¶
id |
[required] The ID of the safety lever. |
state |
[required] The state of the safety lever. |
Value¶
A list with the following syntax:
list(
safetyLever = list(
id = "string",
arn = "string",
state = list(
status = "disengaged"|"engaged"|"engaging",
reason = "string"
)
)
)
Request syntax¶
svc$update_safety_lever_state(
id = "string",
state = list(
status = "disengaged"|"engaged",
reason = "string"
)
)