Interface CfnHarness.HarnessGeminiModelConfigProperty

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

@Stability(Stable) public static interface CfnHarness.HarnessGeminiModelConfigProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 HarnessGeminiModelConfigProperty harnessGeminiModelConfigProperty = HarnessGeminiModelConfigProperty.builder()
         .apiKeyArn("apiKeyArn")
         .modelId("modelId")
         // the properties below are optional
         .maxTokens(123)
         .temperature(123)
         .topK(123)
         .topP(123)
         .build();
 

See Also: