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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAssistantAssociationPropsMixin.AssociationDataProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnAssistantAssociationPropsMixin.ExternalBedrockKnowledgeBaseConfigPropertydefault StringThe identifier of the knowledge base.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExternalBedrockKnowledgeBaseConfig
Returns union: eitherIResolvableorCfnAssistantAssociationPropsMixin.ExternalBedrockKnowledgeBaseConfigProperty- See Also:
-
getKnowledgeBaseId
The identifier of the knowledge base.- See Also:
-
builder
@Stability(Stable) static CfnAssistantAssociationPropsMixin.AssociationDataProperty.Builder builder()
-