List Application Access Scopes
ssoadmin_list_application_access_scopes | R Documentation |
Lists the access scopes and authorized targets associated with an application¶
Description¶
Lists the access scopes and authorized targets associated with an application.
Usage¶
ssoadmin_list_application_access_scopes(ApplicationArn, MaxResults,
NextToken)
Arguments¶
ApplicationArn |
[required] Specifies the ARN of the application. |
MaxResults |
Specifies the total number of results that you want included in
each response. If additional items exist beyond the number you specify,
the |
NextToken |
Specifies that you want to receive the next page of results.
Valid only if you received a |
Value¶
A list with the following syntax:
list(
NextToken = "string",
Scopes = list(
list(
AuthorizedTargets = list(
"string"
),
Scope = "string"
)
)
)
Request syntax¶
svc$list_application_access_scopes(
ApplicationArn = "string",
MaxResults = 123,
NextToken = "string"
)