Get Application Grant
ssoadmin_get_application_grant | R Documentation |
Retrieves details about an application grant¶
Description¶
Retrieves details about an application grant.
Usage¶
Arguments¶
ApplicationArn
[required] Specifies the ARN of the application that contains the grant.
GrantType
[required] Specifies the type of grant.
Value¶
A list with the following syntax:
list(
Grant = list(
AuthorizationCode = list(
RedirectUris = list(
"string"
)
),
JwtBearer = list(
AuthorizedTokenIssuers = list(
list(
AuthorizedAudiences = list(
"string"
),
TrustedTokenIssuerArn = "string"
)
)
),
RefreshToken = list(),
TokenExchange = list()
)
)