Interface ModelVariantConfigSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ModelVariantConfigSummary.Builder,ModelVariantConfigSummary>,SdkBuilder<ModelVariantConfigSummary.Builder,ModelVariantConfigSummary>,SdkPojo
- Enclosing class:
- ModelVariantConfigSummary
public static interface ModelVariantConfigSummary.Builder extends SdkPojo, CopyableBuilder<ModelVariantConfigSummary.Builder,ModelVariantConfigSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ModelVariantConfigSummary.BuilderinfrastructureConfig(Consumer<ModelInfrastructureConfig.Builder> infrastructureConfig)The configuration of the infrastructure that the model has been deployed to.ModelVariantConfigSummary.BuilderinfrastructureConfig(ModelInfrastructureConfig infrastructureConfig)The configuration of the infrastructure that the model has been deployed to.ModelVariantConfigSummary.BuildermodelName(String modelName)The name of the Amazon SageMaker Model entity.ModelVariantConfigSummary.Builderstatus(String status)The status of deployment for the model variant on the hosted inference endpoint.ModelVariantConfigSummary.Builderstatus(ModelVariantStatus status)The status of deployment for the model variant on the hosted inference endpoint.ModelVariantConfigSummary.BuildervariantName(String variantName)The name of the variant.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
modelName
ModelVariantConfigSummary.Builder modelName(String modelName)
The name of the Amazon SageMaker Model entity.
- Parameters:
modelName- The name of the Amazon SageMaker Model entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
variantName
ModelVariantConfigSummary.Builder variantName(String variantName)
The name of the variant.
- Parameters:
variantName- The name of the variant.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
infrastructureConfig
ModelVariantConfigSummary.Builder infrastructureConfig(ModelInfrastructureConfig infrastructureConfig)
The configuration of the infrastructure that the model has been deployed to.
- Parameters:
infrastructureConfig- The configuration of the infrastructure that the model has been deployed to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
infrastructureConfig
default ModelVariantConfigSummary.Builder infrastructureConfig(Consumer<ModelInfrastructureConfig.Builder> infrastructureConfig)
The configuration of the infrastructure that the model has been deployed to.
This is a convenience method that creates an instance of theModelInfrastructureConfig.Builderavoiding the need to create one manually viaModelInfrastructureConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toinfrastructureConfig(ModelInfrastructureConfig).- Parameters:
infrastructureConfig- a consumer that will call methods onModelInfrastructureConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
infrastructureConfig(ModelInfrastructureConfig)
-
status
ModelVariantConfigSummary.Builder status(String status)
The status of deployment for the model variant on the hosted inference endpoint.
-
Creating- Amazon SageMaker is preparing the model variant on the hosted inference endpoint. -
InService- The model variant is running on the hosted inference endpoint. -
Updating- Amazon SageMaker is updating the model variant on the hosted inference endpoint. -
Deleting- Amazon SageMaker is deleting the model variant on the hosted inference endpoint. -
Deleted- The model variant has been deleted on the hosted inference endpoint. This can only happen after stopping the experiment.
- Parameters:
status- The status of deployment for the model variant on the hosted inference endpoint.-
Creating- Amazon SageMaker is preparing the model variant on the hosted inference endpoint. -
InService- The model variant is running on the hosted inference endpoint. -
Updating- Amazon SageMaker is updating the model variant on the hosted inference endpoint. -
Deleting- Amazon SageMaker is deleting the model variant on the hosted inference endpoint. -
Deleted- The model variant has been deleted on the hosted inference endpoint. This can only happen after stopping the experiment.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ModelVariantStatus,ModelVariantStatus
-
-
status
ModelVariantConfigSummary.Builder status(ModelVariantStatus status)
The status of deployment for the model variant on the hosted inference endpoint.
-
Creating- Amazon SageMaker is preparing the model variant on the hosted inference endpoint. -
InService- The model variant is running on the hosted inference endpoint. -
Updating- Amazon SageMaker is updating the model variant on the hosted inference endpoint. -
Deleting- Amazon SageMaker is deleting the model variant on the hosted inference endpoint. -
Deleted- The model variant has been deleted on the hosted inference endpoint. This can only happen after stopping the experiment.
- Parameters:
status- The status of deployment for the model variant on the hosted inference endpoint.-
Creating- Amazon SageMaker is preparing the model variant on the hosted inference endpoint. -
InService- The model variant is running on the hosted inference endpoint. -
Updating- Amazon SageMaker is updating the model variant on the hosted inference endpoint. -
Deleting- Amazon SageMaker is deleting the model variant on the hosted inference endpoint. -
Deleted- The model variant has been deleted on the hosted inference endpoint. This can only happen after stopping the experiment.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ModelVariantStatus,ModelVariantStatus
-
-
-