Interface CfnFlowVersionPropsMixin.IPromptInferenceConfigurationProperty
Contains inference configurations for the prompt.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Bedrock
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnFlowVersionPropsMixin.IPromptInferenceConfigurationProperty
Syntax (vb)
Public Interface CfnFlowVersionPropsMixin.IPromptInferenceConfigurationProperty
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.CfnPropertyMixins.AWS.Bedrock;
var promptInferenceConfigurationProperty = new PromptInferenceConfigurationProperty {
Text = new PromptModelInferenceConfigurationProperty {
MaxTokens = 123,
StopSequences = new [] { "stopSequences" },
Temperature = 123,
TopP = 123
}
};
Synopsis
Properties
| Text | Contains inference configurations for a text prompt. |
Properties
Text
Contains inference configurations for a text prompt.
object? Text { get; }