interface InferenceSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelCard.InferenceSpecificationProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelCard.InferenceSpecificationProperty |
Python | aws_cdk.aws_sagemaker.CfnModelCard.InferenceSpecificationProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnModelCard » InferenceSpecificationProperty |
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 inferenceSpecificationProperty: sagemaker.CfnModelCard.InferenceSpecificationProperty = {
containers: [{
image: 'image',
// the properties below are optional
modelDataUrl: 'modelDataUrl',
nearestModelName: 'nearestModelName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| containers | IResolvable | IResolvable | Container[] | CfnModelCard.InferenceSpecificationProperty.Containers. |
containers
Type:
IResolvable | IResolvable | Container[]
CfnModelCard.InferenceSpecificationProperty.Containers.

.NET
Java
Python
TypeScript