Skip to content

List Eulas

nimblestudio_list_eulas R Documentation

List EULAs

Description

List EULAs.

Usage

nimblestudio_list_eulas(eulaIds, nextToken)

Arguments

eulaIds

The list of EULA IDs that should be returned

nextToken

The token for the next set of results, or null if there are no more results.

Value

A list with the following syntax:

list(
  eulas = list(
    list(
      content = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      eulaId = "string",
      name = "string",
      updatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_eulas(
  eulaIds = list(
    "string"
  ),
  nextToken = "string"
)