Skip to content

Get Safety Lever

fis_get_safety_lever R Documentation

Gets information about the specified safety lever

Description

Gets information about the specified safety lever.

Usage

fis_get_safety_lever(id)

Arguments

id

[required] The ID 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$get_safety_lever(
  id = "string"
)