AgentsforBedrock / Client / list_agent_action_groups

list_agent_action_groups#

AgentsforBedrock.Client.list_agent_action_groups(**kwargs)#

Lists an Action Group for existing Amazon Bedrock Agent Version

See also: AWS API Documentation

Request Syntax

response = client.list_agent_action_groups(
    agentId='string',
    agentVersion='string',
    maxResults=123,
    nextToken='string'
)
Parameters:
  • agentId (string) –

    [REQUIRED]

    Id generated at the server side when an Agent is Listed

  • agentVersion (string) –

    [REQUIRED]

    Id generated at the server side when an Agent is Listed

  • maxResults (integer) – Max Results.

  • nextToken (string) – Opaque continuation token of previous paginated response.

Return type:

dict

Returns:

Response Syntax

{
    'actionGroupSummaries': [
        {
            'actionGroupId': 'string',
            'actionGroupName': 'string',
            'actionGroupState': 'ENABLED'|'DISABLED',
            'description': 'string',
            'updatedAt': datetime(2015, 1, 1)
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    List Action Groups Response

    • actionGroupSummaries (list) –

      List of ActionGroup Summaries

      • (dict) –

        ActionGroup Summary

        • actionGroupId (string) –

          Identifier for a resource.

        • actionGroupName (string) –

          Name for a resource.

        • actionGroupState (string) –

          State of the action group

        • description (string) –

          Description of the Resource.

        • updatedAt (datetime) –

          Time Stamp.

    • nextToken (string) –

      Opaque continuation token of previous paginated response.

Exceptions

  • AgentsforBedrock.Client.exceptions.ThrottlingException

  • AgentsforBedrock.Client.exceptions.AccessDeniedException

  • AgentsforBedrock.Client.exceptions.ValidationException

  • AgentsforBedrock.Client.exceptions.InternalServerException

  • AgentsforBedrock.Client.exceptions.ResourceNotFoundException