interface AssistantAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Wisdom.AssistantAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awswisdom#AssistantAssociationReference |
Java | software.amazon.awscdk.interfaces.wisdom.AssistantAssociationReference |
Python | aws_cdk.interfaces.aws_wisdom.AssistantAssociationReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_wisdom } from 'aws-cdk-lib/interfaces';
const assistantAssociationReference: interfaces_aws_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.

.NET
Go
Java
Python
TypeScript