interface InferenceComponentRuntimeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnInferenceComponentPropsMixin.InferenceComponentRuntimeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnInferenceComponentPropsMixin_InferenceComponentRuntimeConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnInferenceComponentPropsMixin.InferenceComponentRuntimeConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnInferenceComponentPropsMixin.InferenceComponentRuntimeConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnInferenceComponentPropsMixin » InferenceComponentRuntimeConfigProperty |
Runtime settings for a model that is deployed with an inference component.
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 inferenceComponentRuntimeConfigProperty: sagemaker.CfnInferenceComponentPropsMixin.InferenceComponentRuntimeConfigProperty = {
copyCount: 123,
currentCopyCount: 123,
desiredCopyCount: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| copy | number | The number of runtime copies of the model container to deploy with the inference component. |
| current | number | The number of runtime copies of the model container that are currently deployed. |
| desired | number | The number of runtime copies of the model container that you requested to deploy with the inference component. |
copyCount?
Type:
number
(optional)
The number of runtime copies of the model container to deploy with the inference component.
Each copy can serve inference requests.
currentCopyCount?
Type:
number
(optional)
The number of runtime copies of the model container that are currently deployed.
desiredCopyCount?
Type:
number
(optional)
The number of runtime copies of the model container that you requested to deploy with the inference component.

.NET
Go
Java
Python
TypeScript