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

.NET
Go
Java
Python
TypeScript