Interface CfnDataSourcePropsMixin.IBedrockFoundationModelConfigurationProperty
Settings for a foundation model used to parse documents for a data source.
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDataSourcePropsMixin.IBedrockFoundationModelConfigurationProperty
Syntax (vb)
Public Interface CfnDataSourcePropsMixin.IBedrockFoundationModelConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var bedrockFoundationModelConfigurationProperty = new BedrockFoundationModelConfigurationProperty {
ModelArn = "modelArn",
ParsingModality = "parsingModality",
ParsingPrompt = new ParsingPromptProperty {
ParsingPromptText = "parsingPromptText"
}
};
Synopsis
Properties
| ModelArn | The ARN of the foundation model to use for parsing. |
| ParsingModality | Specifies whether to enable parsing of multimodal data, including both text and/or images. |
| ParsingPrompt | Instructions for interpreting the contents of a document. |
Properties
ModelArn
The ARN of the foundation model to use for parsing.
string? ModelArn { get; }
Property Value
Remarks
ParsingModality
Specifies whether to enable parsing of multimodal data, including both text and/or images.
string? ParsingModality { get; }
Property Value
Remarks
ParsingPrompt
Instructions for interpreting the contents of a document.
object? ParsingPrompt { get; }