interface CfnAIGuardrailVersionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnAIGuardrailVersionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAIGuardrailVersionProps |
Java | software.amazon.awscdk.services.wisdom.CfnAIGuardrailVersionProps |
Python | aws_cdk.aws_wisdom.CfnAIGuardrailVersionProps |
TypeScript | aws-cdk-lib » aws_wisdom » CfnAIGuardrailVersionProps |
Properties for defining a CfnAIGuardrailVersion.
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 cfnAIGuardrailVersionProps: wisdom.CfnAIGuardrailVersionProps = {
aiGuardrailId: 'aiGuardrailId',
assistantId: 'assistantId',
// the properties below are optional
modifiedTimeSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| ai | string | The ID of the AI guardrail version. |
| assistant | string | The ID of the AI guardrail version assistant. |
| modified | number | The modified time of the AI guardrail version in seconds. |
aiGuardrailId
Type:
string
The ID of the AI guardrail version.
assistantId
Type:
string
The ID of the AI guardrail version assistant.
modifiedTimeSeconds?
Type:
number
(optional)
The modified time of the AI guardrail version in seconds.

.NET
Go
Java
Python
TypeScript