Interface DeploymentRecommendation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DeploymentRecommendation.Builder,DeploymentRecommendation>,SdkBuilder<DeploymentRecommendation.Builder,DeploymentRecommendation>,SdkPojo
- Enclosing class:
- DeploymentRecommendation
public static interface DeploymentRecommendation.Builder extends SdkPojo, CopyableBuilder<DeploymentRecommendation.Builder,DeploymentRecommendation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeploymentRecommendation.BuilderrealTimeInferenceRecommendations(Collection<RealTimeInferenceRecommendation> realTimeInferenceRecommendations)A list of RealTimeInferenceRecommendation items.DeploymentRecommendation.BuilderrealTimeInferenceRecommendations(Consumer<RealTimeInferenceRecommendation.Builder>... realTimeInferenceRecommendations)A list of RealTimeInferenceRecommendation items.DeploymentRecommendation.BuilderrealTimeInferenceRecommendations(RealTimeInferenceRecommendation... realTimeInferenceRecommendations)A list of RealTimeInferenceRecommendation items.DeploymentRecommendation.BuilderrecommendationStatus(String recommendationStatus)Status of the deployment recommendation.DeploymentRecommendation.BuilderrecommendationStatus(RecommendationStatus recommendationStatus)Status of the deployment recommendation.-
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
-
recommendationStatus
DeploymentRecommendation.Builder recommendationStatus(String recommendationStatus)
Status of the deployment recommendation. The status
NOT_APPLICABLEmeans that SageMaker is unable to provide a default recommendation for the model using the information provided. If the deployment status isIN_PROGRESS, retry your API call after a few seconds to get aCOMPLETEDdeployment recommendation.- Parameters:
recommendationStatus- Status of the deployment recommendation. The statusNOT_APPLICABLEmeans that SageMaker is unable to provide a default recommendation for the model using the information provided. If the deployment status isIN_PROGRESS, retry your API call after a few seconds to get aCOMPLETEDdeployment recommendation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RecommendationStatus,RecommendationStatus
-
recommendationStatus
DeploymentRecommendation.Builder recommendationStatus(RecommendationStatus recommendationStatus)
Status of the deployment recommendation. The status
NOT_APPLICABLEmeans that SageMaker is unable to provide a default recommendation for the model using the information provided. If the deployment status isIN_PROGRESS, retry your API call after a few seconds to get aCOMPLETEDdeployment recommendation.- Parameters:
recommendationStatus- Status of the deployment recommendation. The statusNOT_APPLICABLEmeans that SageMaker is unable to provide a default recommendation for the model using the information provided. If the deployment status isIN_PROGRESS, retry your API call after a few seconds to get aCOMPLETEDdeployment recommendation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RecommendationStatus,RecommendationStatus
-
realTimeInferenceRecommendations
DeploymentRecommendation.Builder realTimeInferenceRecommendations(Collection<RealTimeInferenceRecommendation> realTimeInferenceRecommendations)
A list of RealTimeInferenceRecommendation items.
- Parameters:
realTimeInferenceRecommendations- A list of RealTimeInferenceRecommendation items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
realTimeInferenceRecommendations
DeploymentRecommendation.Builder realTimeInferenceRecommendations(RealTimeInferenceRecommendation... realTimeInferenceRecommendations)
A list of RealTimeInferenceRecommendation items.
- Parameters:
realTimeInferenceRecommendations- A list of RealTimeInferenceRecommendation items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
realTimeInferenceRecommendations
DeploymentRecommendation.Builder realTimeInferenceRecommendations(Consumer<RealTimeInferenceRecommendation.Builder>... realTimeInferenceRecommendations)
A list of RealTimeInferenceRecommendation items.
This is a convenience method that creates an instance of theRealTimeInferenceRecommendation.Builderavoiding the need to create one manually viaRealTimeInferenceRecommendation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#realTimeInferenceRecommendations(List.) - Parameters:
realTimeInferenceRecommendations- a consumer that will call methods onRealTimeInferenceRecommendation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#realTimeInferenceRecommendations(java.util.Collection)
-
-