Interface CfnEvaluator.InferenceConfigurationProperty

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

@Stability(Stable) public static interface CfnEvaluator.InferenceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The inference configuration parameters that control model behavior during evaluation.

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.bedrockagentcore.*;
 InferenceConfigurationProperty inferenceConfigurationProperty = InferenceConfigurationProperty.builder()
         .maxTokens(123)
         .temperature(123)
         .topP(123)
         .build();
 

See Also: