Interface CfnDataSource.BedrockFoundationModelConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSource.BedrockFoundationModelConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Settings for a foundation model or inference profile used to parse documents for a data source.

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

See Also: