interface InferenceProfileModelSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnApplicationInferenceProfile.InferenceProfileModelSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnApplicationInferenceProfile_InferenceProfileModelSourceProperty |
Java | software.amazon.awscdk.services.bedrock.CfnApplicationInferenceProfile.InferenceProfileModelSourceProperty |
Python | aws_cdk.aws_bedrock.CfnApplicationInferenceProfile.InferenceProfileModelSourceProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnApplicationInferenceProfile » InferenceProfileModelSourceProperty |
Contains information about the model or system-defined inference profile that is the source for an inference profile..
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const inferenceProfileModelSourceProperty: bedrock.CfnApplicationInferenceProfile.InferenceProfileModelSourceProperty = {
copyFrom: 'copyFrom',
};
Properties
| Name | Type | Description |
|---|---|---|
| copy | string | The ARN of the model or system-defined inference profile that is the source for the inference profile. |
copyFrom
Type:
string
The ARN of the model or system-defined inference profile that is the source for the inference profile.

.NET
Go
Java
Python
TypeScript