interface InferenceSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnAlgorithmPropsMixin.InferenceSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnAlgorithmPropsMixin_InferenceSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnAlgorithmPropsMixin.InferenceSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnAlgorithmPropsMixin.InferenceSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnAlgorithmPropsMixin » InferenceSpecificationProperty |
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.CfnAlgorithmPropsMixin.InferenceSpecificationProperty = {
containers: [{
containerHostname: 'containerHostname',
environment: {
environmentKey: 'environment',
},
framework: 'framework',
frameworkVersion: 'frameworkVersion',
image: 'image',
imageDigest: 'imageDigest',
isCheckpoint: false,
modelInput: {
dataInputConfig: 'dataInputConfig',
},
nearestModelName: 'nearestModelName',
}],
supportedContentTypes: ['supportedContentTypes'],
supportedRealtimeInferenceInstanceTypes: ['supportedRealtimeInferenceInstanceTypes'],
supportedResponseMimeTypes: ['supportedResponseMimeTypes'],
supportedTransformInstanceTypes: ['supportedTransformInstanceTypes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| containers? | IResolvable | (IResolvable | Model)[] | |
| supported | string[] | |
| supported | string[] | |
| supported | string[] | |
| supported | string[] |
containers?
Type:
IResolvable | (IResolvable | Model)[]
(optional)
supportedContentTypes?
Type:
string[]
(optional)
supportedRealtimeInferenceInstanceTypes?
Type:
string[]
(optional)
supportedResponseMimeTypes?
Type:
string[]
(optional)
supportedTransformInstanceTypes?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript