interface InferenceTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.InferenceTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_InferenceTargetConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.InferenceTargetConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.InferenceTargetConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » InferenceTargetConfigurationProperty |
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-lib';
const inferenceTargetConfigurationProperty: bedrockagentcore.CfnGatewayTarget.InferenceTargetConfigurationProperty = {
connector: {
source: {
connectorId: 'connectorId',
},
},
provider: {
endpoint: 'endpoint',
// the properties below are optional
modelMapping: {
providerPrefix: {
separator: 'separator',
strip: false,
},
},
operations: [{
path: 'path',
// the properties below are optional
models: [{
model: 'model',
}],
providerPath: 'providerPath',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| connector? | IResolvable | Inference | |
| provider? | IResolvable | Inference |
connector?
Type:
IResolvable | Inference
(optional)
provider?
Type:
IResolvable | Inference
(optional)

.NET
Go
Java
Python
TypeScript