GuardrailVersionReference

class aws_cdk.aws_bedrock.GuardrailVersionReference(*, guardrail_id, version)

Bases: object

A reference to a GuardrailVersion resource.

Parameters:
  • guardrail_id (str) – The GuardrailId of the GuardrailVersion resource.

  • version (str) – The Version of the GuardrailVersion 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_bedrock as bedrock

guardrail_version_reference = bedrock.GuardrailVersionReference(
    guardrail_id="guardrailId",
    version="version"
)

Attributes

guardrail_id

The GuardrailId of the GuardrailVersion resource.

version

The Version of the GuardrailVersion resource.