Get Application Grant
ssoadmin_get_application_grant | R Documentation |
Retrieves details about an application grant¶
Description¶
Retrieves details about an application grant.
Usage¶
ssoadmin_get_application_grant(ApplicationArn, GrantType)
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()
)
)
Request syntax¶
svc$get_application_grant(
ApplicationArn = "string",
GrantType = "authorization_code"|"refresh_token"|"urn:ietf:params:oauth:grant-type:jwt-bearer"|"urn:ietf:params:oauth:grant-type:token-exchange"
)