Select your cookie preferences

We use cookies and similar tools to enhance your experience, provide our services, deliver relevant advertising, and make improvements. Approved third parties also use these tools to help us deliver advertising and provide certain site features.

list_extensions

list_extensions(**kwargs)

Lists all custom and Amazon Web Services authored AppConfig extensions in the account. For more information about extensions, see Working with AppConfig extensions in the AppConfig User Guide .

See also: AWS API Documentation

Request Syntax

response = client.list_extensions(
    MaxResults=123,
    NextToken='string',
    Name='string'
)
Parameters
  • MaxResults (integer) -- The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
  • NextToken (string) -- A token to start the list. Use this token to get the next set of results.
  • Name (string) -- The extension name.
Return type

dict

Returns

Response Syntax

{
    'Items': [
        {
            'Id': 'string',
            'Name': 'string',
            'VersionNumber': 123,
            'Arn': 'string',
            'Description': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Items (list) --

      The list of available extensions. The list includes Amazon Web Services authored and user-created extensions.

      • (dict) --

        Information about an extension. Call GetExtension to get more information about an extension.

        • Id (string) --

          The system-generated ID of the extension.

        • Name (string) --

          The extension name.

        • VersionNumber (integer) --

          The extension version number.

        • Arn (string) --

          The system-generated Amazon Resource Name (ARN) for the extension.

        • Description (string) --

          Information about the extension.

    • NextToken (string) --

      The token for the next set of items to return. Use this token to get the next set of results.

Exceptions

  • AppConfig.Client.exceptions.InternalServerException
  • AppConfig.Client.exceptions.BadRequestException