interface InferenceSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelCardPropsMixin.InferenceSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelCardPropsMixin_InferenceSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelCardPropsMixin.InferenceSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelCardPropsMixin.InferenceSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnModelCardPropsMixin » InferenceSpecificationProperty |
Defines how to perform inference generation after a training job is run.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const inferenceSpecificationProperty: sagemaker.CfnModelCardPropsMixin.InferenceSpecificationProperty = {
containers: [{
image: 'image',
modelDataUrl: 'modelDataUrl',
nearestModelName: 'nearestModelName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| containers? | IResolvable | (IResolvable | Container)[] | The Amazon ECR registry path of the Docker image that contains the inference code. |
containers?
Type:
IResolvable | (IResolvable | Container)[]
(optional)
The Amazon ECR registry path of the Docker image that contains the inference code.

.NET
Go
Java
Python
TypeScript