interface AssistantAssociationReference
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Wisdom.AssistantAssociationReference | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#AssistantAssociationReference | 
|  Java | software.amazon.awscdk.services.wisdom.AssistantAssociationReference | 
|  Python | aws_cdk.aws_wisdom.AssistantAssociationReference | 
|  TypeScript | aws-cdk-lib»aws_wisdom»AssistantAssociationReference | 
A reference to a AssistantAssociation 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 wisdom } from 'aws-cdk-lib';
const assistantAssociationReference: wisdom.AssistantAssociationReference = {
  assistantAssociationArn: 'assistantAssociationArn',
  assistantAssociationId: 'assistantAssociationId',
  assistantId: 'assistantId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| assistant | string | The ARN of the AssistantAssociation resource. | 
| assistant | string | The AssistantAssociationId of the AssistantAssociation resource. | 
| assistant | string | The AssistantId of the AssistantAssociation resource. | 
assistantAssociationArn
Type:
string
The ARN of the AssistantAssociation resource.
assistantAssociationId
Type:
string
The AssistantAssociationId of the AssistantAssociation resource.
assistantId
Type:
string
The AssistantId of the AssistantAssociation resource.
