Interface CfnFlowVersion.PromptModelInferenceConfigurationProperty

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

@Stability(Stable) public static interface CfnFlowVersion.PromptModelInferenceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains inference configurations related to model inference for a prompt.

For more information, see Inference parameters .

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.*;
 PromptModelInferenceConfigurationProperty promptModelInferenceConfigurationProperty = PromptModelInferenceConfigurationProperty.builder()
         .maxTokens(123)
         .stopSequences(List.of("stopSequences"))
         .temperature(123)
         .topP(123)
         .build();
 

See Also: