Interface CfnAssistantAssociation.AssociationDataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssistantAssociation.AssociationDataProperty.Jsii$Proxy
- Enclosing class:
CfnAssistantAssociation
@Stability(Stable)
public static interface CfnAssistantAssociation.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.services.wisdom.*;
AssociationDataProperty associationDataProperty = AssociationDataProperty.builder()
.externalBedrockKnowledgeBaseConfig(ExternalBedrockKnowledgeBaseConfigProperty.builder()
.accessRoleArn("accessRoleArn")
.bedrockKnowledgeBaseArn("bedrockKnowledgeBaseArn")
.build())
.knowledgeBaseId("knowledgeBaseId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAssistantAssociation.AssociationDataPropertystatic final classAn implementation forCfnAssistantAssociation.AssociationDataProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnAssistantAssociation.ExternalBedrockKnowledgeBaseConfigPropertydefault StringThe identifier of the knowledge base.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExternalBedrockKnowledgeBaseConfig
Returns union: eitherIResolvableorCfnAssistantAssociation.ExternalBedrockKnowledgeBaseConfigProperty- See Also:
-
getKnowledgeBaseId
The identifier of the knowledge base.- See Also:
-
builder
-