interface InferenceEnvironmentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelCard.InferenceEnvironmentProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelCard.InferenceEnvironmentProperty |
Python | aws_cdk.aws_sagemaker.CfnModelCard.InferenceEnvironmentProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnModelCard » InferenceEnvironmentProperty |
An overview of a model's inference environment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const inferenceEnvironmentProperty: sagemaker.CfnModelCard.InferenceEnvironmentProperty = {
containerImage: ['containerImage'],
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string[] | The container used to run the inference environment. |
containerImage?
Type:
string[]
(optional)
The container used to run the inference environment.

.NET
Java
Python
TypeScript