Skip to content

Get Access Token

licensemanager_get_access_token R Documentation

Gets a temporary access token to use with AssumeRoleWithWebIdentity

Description

Gets a temporary access token to use with AssumeRoleWithWebIdentity. Access tokens are valid for one hour.

Usage

licensemanager_get_access_token(Token, TokenProperties)

Arguments

Token

[required] Refresh token, encoded as a JWT token.

TokenProperties

Token properties to validate against those present in the JWT token.

Value

A list with the following syntax:

list(
  AccessToken = "string"
)

Request syntax

svc$get_access_token(
  Token = "string",
  TokenProperties = list(
    "string"
  )
)