interface InferenceTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayTargetPropsMixin.InferenceTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayTargetPropsMixin_InferenceTargetConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayTargetPropsMixin.InferenceTargetConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayTargetPropsMixin.InferenceTargetConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayTargetPropsMixin » 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/cfn-property-mixins';
const inferenceTargetConfigurationProperty: bedrockagentcore.CfnGatewayTargetPropsMixin.InferenceTargetConfigurationProperty = {
connector: {
source: {
connectorId: 'connectorId',
},
},
provider: {
endpoint: 'endpoint',
modelMapping: {
providerPrefix: {
separator: 'separator',
strip: false,
},
},
operations: [{
models: [{
model: 'model',
}],
path: 'path',
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