interface InferenceProviderTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.InferenceProviderTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_InferenceProviderTargetConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.InferenceProviderTargetConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.InferenceProviderTargetConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » InferenceProviderTargetConfigurationProperty |
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 inferenceProviderTargetConfigurationProperty: bedrockagentcore.CfnGatewayTarget.InferenceProviderTargetConfigurationProperty = {
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 |
|---|---|---|
| endpoint | string | |
| model | IResolvable | Model | |
| operations? | IResolvable | (IResolvable | Inference)[] |
endpoint
Type:
string
modelMapping?
Type:
IResolvable | Model
(optional)
operations?
Type:
IResolvable | (IResolvable | Inference)[]
(optional)

.NET
Go
Java
Python
TypeScript