All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.sagemaker.model.RealTimeInferenceRecommendation Maven / Gradle / Ivy

/*
 * Copyright 2019-2024 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 environment; /** *

* 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 getEnvironment() { return environment; } /** *

* 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 environment) { this.environment = environment; } /** *

* 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 environment) { setEnvironment(environment); return this; } /** * Add a single Environment entry * * @see RealTimeInferenceRecommendation#withEnvironment * @returns a reference to this object so that method calls can be chained together. */ public RealTimeInferenceRecommendation addEnvironmentEntry(String key, String value) { if (null == this.environment) { this.environment = new java.util.HashMap(); } if (this.environment.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.environment.put(key, value); return this; } /** * Removes all the entries added into Environment. * * @return Returns a reference to this object so that method calls can be chained together. */ public RealTimeInferenceRecommendation clearEnvironmentEntries() { this.environment = null; return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getRecommendationId() != null) sb.append("RecommendationId: ").append(getRecommendationId()).append(","); if (getInstanceType() != null) sb.append("InstanceType: ").append(getInstanceType()).append(","); if (getEnvironment() != null) sb.append("Environment: ").append(getEnvironment()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RealTimeInferenceRecommendation == false) return false; RealTimeInferenceRecommendation other = (RealTimeInferenceRecommendation) obj; if (other.getRecommendationId() == null ^ this.getRecommendationId() == null) return false; if (other.getRecommendationId() != null && other.getRecommendationId().equals(this.getRecommendationId()) == false) return false; if (other.getInstanceType() == null ^ this.getInstanceType() == null) return false; if (other.getInstanceType() != null && other.getInstanceType().equals(this.getInstanceType()) == false) return false; if (other.getEnvironment() == null ^ this.getEnvironment() == null) return false; if (other.getEnvironment() != null && other.getEnvironment().equals(this.getEnvironment()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRecommendationId() == null) ? 0 : getRecommendationId().hashCode()); hashCode = prime * hashCode + ((getInstanceType() == null) ? 0 : getInstanceType().hashCode()); hashCode = prime * hashCode + ((getEnvironment() == null) ? 0 : getEnvironment().hashCode()); return hashCode; } @Override public RealTimeInferenceRecommendation clone() { try { return (RealTimeInferenceRecommendation) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.sagemaker.model.transform.RealTimeInferenceRecommendationMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy