Skip to content

Batch Get Variable

frauddetector_batch_get_variable R Documentation

Gets a batch of variables

Description

Gets a batch of variables.

Usage

frauddetector_batch_get_variable(names)

Arguments

names

[required] The list of variable names to get.

Value

A list with the following syntax:

list(
  variables = list(
    list(
      name = "string",
      dataType = "STRING"|"INTEGER"|"FLOAT"|"BOOLEAN"|"DATETIME",
      dataSource = "EVENT"|"MODEL_SCORE"|"EXTERNAL_MODEL_SCORE",
      defaultValue = "string",
      description = "string",
      variableType = "string",
      lastUpdatedTime = "string",
      createdTime = "string",
      arn = "string"
    )
  ),
  errors = list(
    list(
      name = "string",
      code = 123,
      message = "string"
    )
  )
)

Request syntax

svc$batch_get_variable(
  names = list(
    "string"
  )
)