Learn R Programming

paws.management (version 0.1.12)

licensemanager_list_tokens: Lists your tokens

Description

Lists your tokens.

Usage

licensemanager_list_tokens(TokenIds, Filters, NextToken, MaxResults)

Value

A list with the following syntax:

list(
  Tokens = list(
    list(
      TokenId = "string",
      TokenType = "string",
      LicenseArn = "string",
      ExpirationTime = "string",
      TokenProperties = list(
        "string"
      ),
      RoleArns = list(
        "string"
      ),
      Status = "string"
    )
  ),
  NextToken = "string"
)

Arguments

TokenIds

Token IDs.

Filters

Filters to scope the results. The following filter is supported:

  • licenseArns

NextToken

Token for the next set of results.

MaxResults

Maximum number of results to return in a single call.

Request syntax

svc$list_tokens(
  TokenIds = list(
    "string"
  ),
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  NextToken = "string",
  MaxResults = 123
)