interface CfnAssistantAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnAssistantAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnAssistantAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnAssistantAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAssistantAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » 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 { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const cfnAssistantAssociationMixinProps: wisdom_mixins.CfnAssistantAssociationMixinProps = {
assistantId: 'assistantId',
association: {
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