interface AIGuardrailVersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Wisdom.AIGuardrailVersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awswisdom#AIGuardrailVersionReference |
Java | software.amazon.awscdk.interfaces.wisdom.AIGuardrailVersionReference |
Python | aws_cdk.interfaces.aws_wisdom.AIGuardrailVersionReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_wisdom } from 'aws-cdk-lib/interfaces';
const aIGuardrailVersionReference: interfaces_aws_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