AIPromptVersionReference

class aws_cdk.aws_wisdom.AIPromptVersionReference(*, ai_prompt_id, assistant_id, version_number)

Bases: object

A reference to a AIPromptVersion resource.

Parameters:
  • ai_prompt_id (str) – The AIPromptId of the AIPromptVersion resource.

  • assistant_id (str) – The AssistantId of the AIPromptVersion resource.

  • version_number (str) – The VersionNumber of the AIPromptVersion 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_version_reference = wisdom.AIPromptVersionReference(
    ai_prompt_id="aiPromptId",
    assistant_id="assistantId",
    version_number="versionNumber"
)

Attributes

ai_prompt_id

The AIPromptId of the AIPromptVersion resource.

assistant_id

The AssistantId of the AIPromptVersion resource.

version_number

The VersionNumber of the AIPromptVersion resource.