interface AIGuardrailVersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.AIGuardrailVersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#AIGuardrailVersionReference |
Java | software.amazon.awscdk.services.wisdom.AIGuardrailVersionReference |
Python | aws_cdk.aws_wisdom.AIGuardrailVersionReference |
TypeScript | aws-cdk-lib » aws_wisdom » AIGuardrailVersionReference |
A reference to a AIGuardrailVersion resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wisdom as wisdom } from 'aws-cdk-lib';
const aIGuardrailVersionReference: wisdom.AIGuardrailVersionReference = {
aiGuardrailId: 'aiGuardrailId',
assistantId: 'assistantId',
versionNumber: 'versionNumber',
};
Properties
| Name | Type | Description |
|---|---|---|
| ai | string | The AIGuardrailId of the AIGuardrailVersion resource. |
| assistant | string | The AssistantId of the AIGuardrailVersion resource. |
| version | string | The VersionNumber of the AIGuardrailVersion resource. |
aiGuardrailId
Type:
string
The AIGuardrailId of the AIGuardrailVersion resource.
assistantId
Type:
string
The AssistantId of the AIGuardrailVersion resource.
versionNumber
Type:
string
The VersionNumber of the AIGuardrailVersion resource.

.NET
Go
Java
Python
TypeScript