/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.sagemaker.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* The recommended configuration to use for Real-Time Inference. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class RealTimeInferenceRecommendation implements Serializable, Cloneable, StructuredPojo { /** ** The recommendation ID which uniquely identifies each recommendation. *
*/ private String recommendationId; /** ** The recommended instance type for Real-Time Inference. *
*/ private String instanceType; /** ** The recommended environment variables to set in the model container for Real-Time Inference. *
*/ private java.util.Map* The recommendation ID which uniquely identifies each recommendation. *
* * @param recommendationId * The recommendation ID which uniquely identifies each recommendation. */ public void setRecommendationId(String recommendationId) { this.recommendationId = recommendationId; } /** ** The recommendation ID which uniquely identifies each recommendation. *
* * @return The recommendation ID which uniquely identifies each recommendation. */ public String getRecommendationId() { return this.recommendationId; } /** ** The recommendation ID which uniquely identifies each recommendation. *
* * @param recommendationId * The recommendation ID which uniquely identifies each recommendation. * @return Returns a reference to this object so that method calls can be chained together. */ public RealTimeInferenceRecommendation withRecommendationId(String recommendationId) { setRecommendationId(recommendationId); return this; } /** ** The recommended instance type for Real-Time Inference. *
* * @param instanceType * The recommended instance type for Real-Time Inference. * @see ProductionVariantInstanceType */ public void setInstanceType(String instanceType) { this.instanceType = instanceType; } /** ** The recommended instance type for Real-Time Inference. *
* * @return The recommended instance type for Real-Time Inference. * @see ProductionVariantInstanceType */ public String getInstanceType() { return this.instanceType; } /** ** The recommended instance type for Real-Time Inference. *
* * @param instanceType * The recommended instance type for Real-Time Inference. * @return Returns a reference to this object so that method calls can be chained together. * @see ProductionVariantInstanceType */ public RealTimeInferenceRecommendation withInstanceType(String instanceType) { setInstanceType(instanceType); return this; } /** ** The recommended instance type for Real-Time Inference. *
* * @param instanceType * The recommended instance type for Real-Time Inference. * @return Returns a reference to this object so that method calls can be chained together. * @see ProductionVariantInstanceType */ public RealTimeInferenceRecommendation withInstanceType(ProductionVariantInstanceType instanceType) { this.instanceType = instanceType.toString(); return this; } /** ** The recommended environment variables to set in the model container for Real-Time Inference. *
* * @return The recommended environment variables to set in the model container for Real-Time Inference. */ public java.util.Map* The recommended environment variables to set in the model container for Real-Time Inference. *
* * @param environment * The recommended environment variables to set in the model container for Real-Time Inference. */ public void setEnvironment(java.util.Map* The recommended environment variables to set in the model container for Real-Time Inference. *
* * @param environment * The recommended environment variables to set in the model container for Real-Time Inference. * @return Returns a reference to this object so that method calls can be chained together. */ public RealTimeInferenceRecommendation withEnvironment(java.util.Map