Skip to content

List Application Grants

ssoadmin_list_application_grants R Documentation

List the grants associated with an application

Description

List the grants associated with an application.

Usage

ssoadmin_list_application_grants(ApplicationArn, NextToken)

Arguments

ApplicationArn

[required] Specifies the ARN of the application whose grants you want to list.

NextToken

Specifies that you want to receive the next page of results. Valid only if you received a NextToken response in the previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous call's NextToken response to request the next page of results.

Value

A list with the following syntax:

list(
  Grants = list(
    list(
      Grant = list(
        AuthorizationCode = list(
          RedirectUris = list(
            "string"
          )
        ),
        JwtBearer = list(
          AuthorizedTokenIssuers = list(
            list(
              AuthorizedAudiences = list(
                "string"
              ),
              TrustedTokenIssuerArn = "string"
            )
          )
        ),
        RefreshToken = list(),
        TokenExchange = list()
      ),
      GrantType = "authorization_code"|"refresh_token"|"urn:ietf:params:oauth:grant-type:jwt-bearer"|"urn:ietf:params:oauth:grant-type:token-exchange"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_application_grants(
  ApplicationArn = "string",
  NextToken = "string"
)