interface AIGuardrailReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Wisdom.AIGuardrailReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awswisdom#AIGuardrailReference |
Java | software.amazon.awscdk.interfaces.wisdom.AIGuardrailReference |
Python | aws_cdk.interfaces.aws_wisdom.AIGuardrailReference |
TypeScript | aws-cdk-lib » interfaces » aws_wisdom » AIGuardrailReference |
A reference to a AIGuardrail 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_wisdom } from 'aws-cdk-lib/interfaces';
const aIGuardrailReference: interfaces_wisdom.AIGuardrailReference = {
aiGuardrailArn: 'aiGuardrailArn',
aiGuardrailId: 'aiGuardrailId',
assistantId: 'assistantId',
};
Properties
| Name | Type | Description |
|---|---|---|
| ai | string | The ARN of the AIGuardrail resource. |
| ai | string | The AIGuardrailId of the AIGuardrail resource. |
| assistant | string | The AssistantId of the AIGuardrail resource. |
aiGuardrailArn
Type:
string
The ARN of the AIGuardrail resource.
aiGuardrailId
Type:
string
The AIGuardrailId of the AIGuardrail resource.
assistantId
Type:
string
The AssistantId of the AIGuardrail resource.

.NET
Go
Java
Python
TypeScript