Interface CfnFlow.PromptModelInferenceConfigurationProperty

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

@Stability(Stable) public static interface CfnFlow.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)
         .topK(123)
         .topP(123)
         .build();
 

See Also: