interface GuardrailVersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Bedrock.GuardrailVersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrock#GuardrailVersionReference |
Java | software.amazon.awscdk.interfaces.bedrock.GuardrailVersionReference |
Python | aws_cdk.interfaces.aws_bedrock.GuardrailVersionReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrock » GuardrailVersionReference |
A reference to a GuardrailVersion 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 guardrailVersionReference: interfaces_aws_bedrock.GuardrailVersionReference = {
guardrailId: 'guardrailId',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| guardrail | string | The GuardrailId of the GuardrailVersion resource. |
| version | string | The Version of the GuardrailVersion resource. |
guardrailId
Type:
string
The GuardrailId of the GuardrailVersion resource.
version
Type:
string
The Version of the GuardrailVersion resource.

.NET
Go
Java
Python
TypeScript