AIPromptReference
- class aws_cdk.aws_wisdom.AIPromptReference(*, ai_prompt_arn, ai_prompt_id, assistant_id)
Bases:
object
A reference to a AIPrompt resource.
- Parameters:
ai_prompt_arn (
str
) – The ARN of the AIPrompt resource.ai_prompt_id (
str
) – The AIPromptId of the AIPrompt resource.assistant_id (
str
) – The AssistantId of the AIPrompt resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_wisdom as wisdom a_iPrompt_reference = wisdom.AIPromptReference( ai_prompt_arn="aiPromptArn", ai_prompt_id="aiPromptId", assistant_id="assistantId" )
Attributes
- ai_prompt_arn
The ARN of the AIPrompt resource.
- ai_prompt_id
The AIPromptId of the AIPrompt resource.
- assistant_id
The AssistantId of the AIPrompt resource.