AppRegistry / Client / list_associated_attribute_groups

list_associated_attribute_groups#

AppRegistry.Client.list_associated_attribute_groups(**kwargs)#

Lists all attribute groups that are associated with specified application. Results are paginated.

See also: AWS API Documentation

Request Syntax

response = client.list_associated_attribute_groups(
    application='string',
    nextToken='string',
    maxResults=123
)
Parameters:
  • application (string) –

    [REQUIRED]

    The name or ID of the application.

  • nextToken (string) – The token to use to get the next page of results after a previous API call.

  • maxResults (integer) – The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.

Return type:

dict

Returns:

Response Syntax

{
    'attributeGroups': [
        'string',
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • attributeGroups (list) –

      A list of attribute group IDs.

      • (string) –

    • nextToken (string) –

      The token to use to get the next page of results after a previous API call.

Exceptions