aws.bedrock_agent.list_prompts
Example SQL Queries
SELECT * FROMaws.bedrock_agent.list_prompts;Description
Returns either information about the working draft (DRAFT version) of each prompt in an account, or information about of all versions of a prompt, depending on whether you include the promptIdentifier field or not. For more information, see View information about prompts using Prompt management in the Amazon Bedrock User Guide.
Table Definition
| Column Name | Column Data Type |
|---|---|
| prompt_identifier Input Column The unique identifier of the prompt for whose versions you want to return information. Omit this field to list information about all prompts in an account. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| arn The Amazon Resource Name (ARN) of the prompt or the prompt version (if you specified a version in the request). | VARCHAR |
| created_at The time at which the prompt was created. | TIMESTAMP_S |
| description The description of the prompt. | VARCHAR |
| id The unique identifier of the prompt. | VARCHAR |
| name The name of the prompt. | VARCHAR |
| updated_at The time at which the prompt was last updated. | TIMESTAMP_S |
| version The version of the prompt that this summary applies to. | VARCHAR |