Interface CfnAssistantAssociationPropsMixin.AssociationDataProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssistantAssociationPropsMixin.AssociationDataProperty.Jsii$Proxy
Enclosing class:
CfnAssistantAssociationPropsMixin

@Stability(Stable) public static interface CfnAssistantAssociationPropsMixin.AssociationDataProperty extends software.amazon.jsii.JsiiSerializable
A union type that currently has a single argument, which is the knowledge base ID.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.wisdom.*;
 AssociationDataProperty associationDataProperty = AssociationDataProperty.builder()
         .externalBedrockKnowledgeBaseConfig(ExternalBedrockKnowledgeBaseConfigProperty.builder()
                 .accessRoleArn("accessRoleArn")
                 .bedrockKnowledgeBaseArn("bedrockKnowledgeBaseArn")
                 .build())
         .knowledgeBaseId("knowledgeBaseId")
         .build();
 

See Also: