AgentRegistryControl / Paginator / ListRegistryRecords

ListRegistryRecords

class AgentRegistryControl.Paginator.ListRegistryRecords
paginator = client.get_paginator('list_registry_records')
paginate(**kwargs)

Creates an iterator that will paginate through responses from AgentRegistryControl.Client.list_registry_records().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    registryId='string',
    filters=[
        {
            'name': 'name'|'status'|'recordType',
            'values': [
                'string',
            ]
        },
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • registryId (string) –

    [REQUIRED]

    The identifier of the registry to list records from (ARN or ID)

  • filters (list) –

    Filters to apply to the registry record list

    • (dict) –

      A single filter applied to a ListRegistryRecords request.

      • name (string) – [REQUIRED]

        The attribute to filter on

      • values (list) – [REQUIRED]

        The values to match for the attribute

        • (string) –

          A single filter value. Constrained by length only; the accepted set of values is filter-specific and validated server-side so enum-style values such as READY or AWS_IAM are accepted.

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'registryRecords': [
        {
            'registryArn': 'string',
            'recordArn': 'string',
            'recordId': 'string',
            'name': 'string',
            'displayName': 'string',
            'description': 'string',
            'recordType': 'MCP'|'AGENT'|'CUSTOM'|'SKILL'|'GATEWAY',
            'recordVersion': 'string',
            'status': 'DRAFT'|'PENDING_APPROVAL'|'APPROVED'|'REJECTED'|'DEPRECATED'|'CREATING'|'UPDATING'|'CREATE_FAILED'|'UPDATE_FAILED',
            'createdAt': datetime(2015, 1, 1),
            'updatedAt': datetime(2015, 1, 1),
            'createdByAutoDetection': True|False,
            'createdBy': 'string',
            'provenanceSummaryList': [
                {
                    'relation': 'DETECTED_FROM',
                    'sourceId': 'string',
                    'sourceType': 'AWS::BedrockAgentCore::Runtime'|'AWS::BedrockAgentCore::Gateway'
                },
            ]
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    Response structure for listing registry records

    • registryRecords (list) –

      List of registry record summaries

      • (dict) –

        A summary of a registry record returned by list operations. Contains identifying and lifecycle fields but omits descriptor content.

        • registryArn (string) –

          The Amazon Resource Name (ARN) of the parent registry that owns the record.

        • recordArn (string) –

          The Amazon Resource Name (ARN) of the registry record.

        • recordId (string) –

          The unique identifier of the registry record.

        • name (string) –

          The name of the registry record. Names are unique within a registry.

        • displayName (string) –

          The human-readable display name of the registry record.

        • description (string) –

          A description of the registry record.

        • recordType (string) –

          The type of the registry record, such as MCP, AGENT, SKILL, or CUSTOM.

        • recordVersion (string) –

          The version identifier of the registry record.

        • status (string) –

          The lifecycle status of the registry record.

        • createdAt (datetime) –

          The timestamp when the registry record was created.

        • updatedAt (datetime) –

          The timestamp when the registry record was last updated.

        • createdByAutoDetection (boolean) –

          Specifies whether the registry record was created by auto-detection. true indicates the record was automatically created by the service based on the registry’s auto-detection configuration; false indicates the record was created through a control-plane API call.

        • createdBy (string) –

          The ID of the Amazon Web Services account that created the registry record.

        • provenanceSummaryList (list) –

          List of condensed provenance entries surfaced on RegistryRecordSummary. Mirrors ProvenanceList’s cardinality (one entry today); modeled as a list for forward-compatibility.

          • (dict) –

            Condensed provenance entry for list results — the key triple only (no sourceDetails union). Enough to display and client-side-filter lineage without the full-read config payload.

            • relation (string) –

              The relationship between the registry record and its provenance source.

            • sourceId (string) –

              The identifier of the upstream source that the registry record was detected from.

            • sourceType (string) –

              The type of the upstream source that the registry record was detected from.

    • NextToken (string) –

      A token to resume pagination.