Interface CfnFlowVersion.PromptInferenceConfigurationProperty

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

@Stability(Stable) public static interface CfnFlowVersion.PromptInferenceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains inference configurations for the prompt.

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

See Also: