Interface CfnKnowledgeBase.BedrockFoundationModelConfigurationProperty

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

@Stability(Stable) public static interface CfnKnowledgeBase.BedrockFoundationModelConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration of the Bedrock foundation model.

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.*;
 BedrockFoundationModelConfigurationProperty bedrockFoundationModelConfigurationProperty = BedrockFoundationModelConfigurationProperty.builder()
         .modelArn("modelArn")
         // the properties below are optional
         .parsingPrompt(ParsingPromptProperty.builder()
                 .parsingPromptText("parsingPromptText")
                 .build())
         .build();
 

See Also: