aws-cdk-lib.aws_wisdom.CfnAssistantAssociationProps

interface CfnAssistantAssociationProps

LanguageType name
.NETAmazon.CDK.AWS.Wisdom.CfnAssistantAssociationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAssistantAssociationProps
Javasoftware.amazon.awscdk.services.wisdom.CfnAssistantAssociationProps
Pythonaws_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

NameTypeDescription
assistantIdstringThe identifier of the Wisdom assistant.
associationIResolvable | AssociationDataPropertyThe identifier of the associated resource.
associationTypestringThe type of association.
tags?CfnTag[]The tags used to organize, track, or control access for this resource.

assistantId

Type: string

The identifier of the Wisdom assistant.


association

Type: IResolvable | AssociationDataProperty

The identifier of the associated resource.


associationType

Type: string

The type of association.


tags?

Type: CfnTag[] (optional)

The tags used to organize, track, or control access for this resource.