AWS Service Catalog App Registry

2022/06/15 - AWS Service Catalog App Registry - 1 new api methods

Changes  This release adds a new API ListAttributeGroupsForApplication that returns associated attribute groups of an application. In addition, the UpdateApplication and UpdateAttributeGroup APIs will not allow users to update the 'Name' attribute.

ListAttributeGroupsForApplication (new) Link ΒΆ

Lists the details of all attribute groups associated with a specific application. The results display in pages.

See also: AWS API Documentation

Request Syntax

client.list_attribute_groups_for_application(
    application='string',
    nextToken='string',
    maxResults=123
)
type application

string

param application

[REQUIRED]

The name or ID of the application.

type nextToken

string

param nextToken

This token retrieves the next page of results after a previous API call.

type maxResults

integer

param maxResults

The upper bound of the number of results to return. The value cannot exceed 25. If you omit this parameter, it defaults to 25. This value is optional.

rtype

dict

returns

Response Syntax

{
    'attributeGroupsDetails': [
        {
            'id': 'string',
            'arn': 'string',
            'name': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • attributeGroupsDetails (list) --

      The details related to a specific AttributeGroup.

      • (dict) --

        The details related to a specific AttributeGroup.

        • id (string) --

          The unique identifier of the attribute group.

        • arn (string) --

          The Amazon resource name (ARN) that specifies the attribute group.

        • name (string) --

          The name of the attribute group.

    • nextToken (string) --

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