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

.NET
Go
Java
Python
TypeScript