Show / Hide Table of Contents

Class CfnDataSourcePropsMixin.BedrockFoundationModelConfigurationProperty

Settings for a foundation model used to parse documents for a data source.

Inheritance
object
CfnDataSourcePropsMixin.BedrockFoundationModelConfigurationProperty
Implements
CfnDataSourcePropsMixin.IBedrockFoundationModelConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.BedrockFoundationModelConfigurationProperty : CfnDataSourcePropsMixin.IBedrockFoundationModelConfigurationProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.BedrockFoundationModelConfigurationProperty Implements CfnDataSourcePropsMixin.IBedrockFoundationModelConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-bedrockfoundationmodelconfiguration.html

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

Constructors

BedrockFoundationModelConfigurationProperty()

Settings for a foundation model used to parse documents for a data source.

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.

Constructors

BedrockFoundationModelConfigurationProperty()

Settings for a foundation model used to parse documents for a data source.

public BedrockFoundationModelConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-bedrockfoundationmodelconfiguration.html

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"
                 }
             };

Properties

ModelArn

The ARN of the foundation model to use for parsing.

public string? ModelArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-bedrockfoundationmodelconfiguration.html#cfn-bedrock-datasource-bedrockfoundationmodelconfiguration-modelarn

ParsingModality

Specifies whether to enable parsing of multimodal data, including both text and/or images.

public string? ParsingModality { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-bedrockfoundationmodelconfiguration.html#cfn-bedrock-datasource-bedrockfoundationmodelconfiguration-parsingmodality

ParsingPrompt

Instructions for interpreting the contents of a document.

public object? ParsingPrompt { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-bedrockfoundationmodelconfiguration.html#cfn-bedrock-datasource-bedrockfoundationmodelconfiguration-parsingprompt

Type union: either IResolvable or CfnDataSourcePropsMixin.IParsingPromptProperty

Implements

CfnDataSourcePropsMixin.IBedrockFoundationModelConfigurationProperty
Back to top Generated by DocFX