AIGuardrailReference

class aws_cdk.aws_wisdom.AIGuardrailReference(*, ai_guardrail_arn, ai_guardrail_id, assistant_id)

Bases: object

A reference to a AIGuardrail resource.

Parameters:
  • ai_guardrail_arn (str) – The ARN of the AIGuardrail resource.

  • ai_guardrail_id (str) – The AIGuardrailId of the AIGuardrail resource.

  • assistant_id (str) – The AssistantId of the AIGuardrail 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_iGuardrail_reference = wisdom.AIGuardrailReference(
    ai_guardrail_arn="aiGuardrailArn",
    ai_guardrail_id="aiGuardrailId",
    assistant_id="assistantId"
)

Attributes

ai_guardrail_arn

The ARN of the AIGuardrail resource.

ai_guardrail_id

The AIGuardrailId of the AIGuardrail resource.

assistant_id

The AssistantId of the AIGuardrail resource.