interface InferenceComponentPlacementStatusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnInferenceComponent.InferenceComponentPlacementStatusProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnInferenceComponent_InferenceComponentPlacementStatusProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnInferenceComponent.InferenceComponentPlacementStatusProperty |
Python | aws_cdk.aws_sagemaker.CfnInferenceComponent.InferenceComponentPlacementStatusProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnInferenceComponent » 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-lib';
const inferenceComponentPlacementStatusProperty: sagemaker.CfnInferenceComponent.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
The number of copies for the inference component.
instanceType
Type:
string
An ML compute instance type.

.NET
Go
Java
Python
TypeScript