SSOAdmin / Client / list_application_access_scopes
list_application_access_scopes#
- SSOAdmin.Client.list_application_access_scopes(**kwargs)#
Lists the access scopes and authorized targets associated with an application.
See also: AWS API Documentation
Request Syntax
response = client.list_application_access_scopes( ApplicationArn='string', MaxResults=123, NextToken='string' )
- Parameters:
ApplicationArn (string) –
[REQUIRED]
Specifies the ARN of the application.
MaxResults (integer) – Specifies the total number of results that you want included in each response. If additional items exist beyond the number you specify, the
NextToken
response element is returned with a value (not null). Include the specified value as theNextToken
request parameter in the next call to the operation to get the next set of results. Note that the service might return fewer results than the maximum even when there are more results available. You should checkNextToken
after every operation to ensure that you receive all of the results.NextToken (string) – 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’sNextToken
response to request the next page of results.
- Return type:
dict
- Returns:
Response Syntax
{ 'NextToken': 'string', 'Scopes': [ { 'AuthorizedTargets': [ 'string', ], 'Scope': 'string' }, ] }
Response Structure
(dict) –
NextToken (string) –
If present, this value indicates that more output is available than is included in the current response. Use this value in the
NextToken
request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until theNextToken
response element comes back asnull
. This indicates that this is the last page of results.Scopes (list) –
An array list of access scopes and their authorized targets that are associated with the application.
(dict) –
A structure that describes an IAM Identity Center access scope and its authorized targets.
AuthorizedTargets (list) –
An array list of ARNs of applications.
(string) –
Scope (string) –
The name of the access scope.
Exceptions
SSOAdmin.Client.exceptions.ThrottlingException
SSOAdmin.Client.exceptions.InternalServerException
SSOAdmin.Client.exceptions.ResourceNotFoundException
SSOAdmin.Client.exceptions.AccessDeniedException
SSOAdmin.Client.exceptions.ValidationException