interface InferenceOperationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.InferenceOperationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_InferenceOperationConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.InferenceOperationConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.InferenceOperationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » InferenceOperationConfigurationProperty |
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 inferenceOperationConfigurationProperty: bedrockagentcore.CfnGatewayTarget.InferenceOperationConfigurationProperty = {
path: 'path',
// the properties below are optional
models: [{
model: 'model',
}],
providerPath: 'providerPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| path | string | |
| models? | IResolvable | (IResolvable | Model)[] | |
| provider | string |
path
Type:
string
models?
Type:
IResolvable | (IResolvable | Model)[]
(optional)
providerPath?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript