interface HarnessGeminiModelConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnHarnessPropsMixin.HarnessGeminiModelConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnHarnessPropsMixin_HarnessGeminiModelConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnHarnessPropsMixin.HarnessGeminiModelConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnHarnessPropsMixin.HarnessGeminiModelConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnHarnessPropsMixin » HarnessGeminiModelConfigProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const harnessGeminiModelConfigProperty: bedrockagentcore.CfnHarnessPropsMixin.HarnessGeminiModelConfigProperty = {
apiKeyArn: 'apiKeyArn',
maxTokens: 123,
modelId: 'modelId',
temperature: 123,
topK: 123,
topP: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | |
| max | number | |
| model | string | |
| temperature? | number | |
| top | number | |
| top | number |
apiKeyArn?
Type:
string
(optional)
maxTokens?
Type:
number
(optional)
modelId?
Type:
string
(optional)
temperature?
Type:
number
(optional)
topK?
Type:
number
(optional)
topP?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript