interface CfnAssistantAssociationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnAssistantAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAssistantAssociationProps |
Java | software.amazon.awscdk.services.wisdom.CfnAssistantAssociationProps |
Python | aws_cdk.aws_wisdom.CfnAssistantAssociationProps |
TypeScript | aws-cdk-lib » aws_wisdom » CfnAssistantAssociationProps |
Properties for defining a CfnAssistantAssociation
.
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 cfnAssistantAssociationProps: wisdom.CfnAssistantAssociationProps = {
assistantId: 'assistantId',
association: {
knowledgeBaseId: 'knowledgeBaseId',
},
associationType: 'associationType',
// the properties below are optional
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
The identifier of the Wisdom assistant.
association
Type:
IResolvable
|
Association
The identifier of the associated resource.
associationType
Type:
string
The type of association.
tags?
Type:
Cfn
[]
(optional)
The tags used to organize, track, or control access for this resource.