Skip to content

Get Action

fis_get_action R Documentation

Gets information about the specified FIS action

Description

Gets information about the specified FIS action.

Usage

fis_get_action(id)

Arguments

id

[required] The ID of the action.

Value

A list with the following syntax:

list(
  action = list(
    id = "string",
    arn = "string",
    description = "string",
    parameters = list(
      list(
        description = "string",
        required = TRUE|FALSE
      )
    ),
    targets = list(
      list(
        resourceType = "string"
      )
    ),
    tags = list(
      "string"
    )
  )
)

Request syntax

svc$get_action(
  id = "string"
)