interface InferenceComponentPlacementStatusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnInferenceComponentPropsMixin.InferenceComponentPlacementStatusProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnInferenceComponentPropsMixin_InferenceComponentPlacementStatusProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnInferenceComponentPropsMixin.InferenceComponentPlacementStatusProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnInferenceComponentPropsMixin.InferenceComponentPlacementStatusProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnInferenceComponentPropsMixin » InferenceComponentPlacementStatusProperty |
The number of inference component copies currently placed on instances of a given type.
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 inferenceComponentPlacementStatusProperty: sagemaker.CfnInferenceComponentPropsMixin.InferenceComponentPlacementStatusProperty = {
currentCopyCount: 123,
instanceType: 'instanceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| current | number | The number of copies for the inference component. |
| instance | string | An ML compute instance type. |
currentCopyCount?
Type:
number
(optional)
The number of copies for the inference component.
instanceType?
Type:
string
(optional)
An ML compute instance type.

.NET
Go
Java
Python
TypeScript