interface CfnAssistantAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Wisdom.CfnAssistantAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswisdom#CfnAssistantAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.wisdom.CfnAssistantAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_wisdom.CfnAssistantAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wisdom » CfnAssistantAssociationMixinProps |
Properties for CfnAssistantAssociationPropsMixin.
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/cfn-property-mixins';
const cfnAssistantAssociationMixinProps: wisdom.CfnAssistantAssociationMixinProps = {
assistantId: 'assistantId',
association: {
externalBedrockKnowledgeBaseConfig: {
accessRoleArn: 'accessRoleArn',
bedrockKnowledgeBaseArn: 'bedrockKnowledgeBaseArn',
},
knowledgeBaseId: 'knowledgeBaseId',
},
associationType: 'associationType',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| assistant | string | The identifier of the Wisdom assistant. |
| association? | IResolvable | Association | The identifier of the associated resource. |
| association | string | The type of association. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
assistantId?
Type:
string
(optional)
The identifier of the Wisdom assistant.
association?
Type:
IResolvable | Association
(optional)
The identifier of the associated resource.
associationType?
Type:
string
(optional)
The type of association.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.

.NET
Go
Java
Python
TypeScript