interface PromptReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Bedrock.PromptReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrock#PromptReference |
Java | software.amazon.awscdk.interfaces.bedrock.PromptReference |
Python | aws_cdk.interfaces.aws_bedrock.PromptReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrock » PromptReference |
A reference to a Prompt resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as interfaces_aws_bedrock } from 'aws-cdk-lib/interfaces';
const promptReference: interfaces_aws_bedrock.PromptReference = {
promptArn: 'promptArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| prompt | string | The Arn of the Prompt resource. |
promptArn
Type:
string
The Arn of the Prompt resource.

.NET
Go
Java
Python
TypeScript