Interface CfnDataSourcePropsMixin.BedrockFoundationModelConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSourcePropsMixin.BedrockFoundationModelConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Settings for a foundation model 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.cfnpropertymixins.services.bedrock.*;
 BedrockFoundationModelConfigurationProperty bedrockFoundationModelConfigurationProperty = BedrockFoundationModelConfigurationProperty.builder()
         .modelArn("modelArn")
         .parsingModality("parsingModality")
         .parsingPrompt(ParsingPromptProperty.builder()
                 .parsingPromptText("parsingPromptText")
                 .build())
         .build();
 

See Also: