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

com.amazonaws.services.machinelearning.model.RealtimeEndpointInfo Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Machine Learning module holds the client classes that is used for communicating with Amazon Machine Learning Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2011-2016 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.machinelearning.model;

import java.io.Serializable;

/**
 * 

* Describes the real-time endpoint information for an MLModel. *

*/ public class RealtimeEndpointInfo implements Serializable, Cloneable { /** *

* The maximum processing rate for the real-time endpoint for MLModel, measured in incoming requests * per second. *

*/ private Integer peakRequestsPerSecond; /** *

* The time that the request to create the real-time endpoint for the MLModel was received. The time is * expressed in epoch time. *

*/ private java.util.Date createdAt; /** *

* The URI that specifies where to send real-time prediction requests for the MLModel. *

* Note *

* The application must wait until the real-time endpoint is ready before using this URI. *

*
*/ private String endpointUrl; /** *

* The current status of the real-time endpoint for the MLModel. This element can have one of the * following values: *

*
    *
  • NONE - Endpoint does not exist or was previously deleted.
  • *
  • READY - Endpoint is ready to be used for real-time predictions.
  • *
  • UPDATING - Updating/creating the endpoint.
  • *
*/ private String endpointStatus; /** *

* The maximum processing rate for the real-time endpoint for MLModel, measured in incoming requests * per second. *

* * @param peakRequestsPerSecond * The maximum processing rate for the real-time endpoint for MLModel, measured in incoming * requests per second. */ public void setPeakRequestsPerSecond(Integer peakRequestsPerSecond) { this.peakRequestsPerSecond = peakRequestsPerSecond; } /** *

* The maximum processing rate for the real-time endpoint for MLModel, measured in incoming requests * per second. *

* * @return The maximum processing rate for the real-time endpoint for MLModel, measured in incoming * requests per second. */ public Integer getPeakRequestsPerSecond() { return this.peakRequestsPerSecond; } /** *

* The maximum processing rate for the real-time endpoint for MLModel, measured in incoming requests * per second. *

* * @param peakRequestsPerSecond * The maximum processing rate for the real-time endpoint for MLModel, measured in incoming * requests per second. * @return Returns a reference to this object so that method calls can be chained together. */ public RealtimeEndpointInfo withPeakRequestsPerSecond(Integer peakRequestsPerSecond) { setPeakRequestsPerSecond(peakRequestsPerSecond); return this; } /** *

* The time that the request to create the real-time endpoint for the MLModel was received. The time is * expressed in epoch time. *

* * @param createdAt * The time that the request to create the real-time endpoint for the MLModel was received. The * time is expressed in epoch time. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* The time that the request to create the real-time endpoint for the MLModel was received. The time is * expressed in epoch time. *

* * @return The time that the request to create the real-time endpoint for the MLModel was received. The * time is expressed in epoch time. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* The time that the request to create the real-time endpoint for the MLModel was received. The time is * expressed in epoch time. *

* * @param createdAt * The time that the request to create the real-time endpoint for the MLModel was received. The * time is expressed in epoch time. * @return Returns a reference to this object so that method calls can be chained together. */ public RealtimeEndpointInfo withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** *

* The URI that specifies where to send real-time prediction requests for the MLModel. *

* Note *

* The application must wait until the real-time endpoint is ready before using this URI. *

*
* * @param endpointUrl * The URI that specifies where to send real-time prediction requests for the MLModel.

* Note *

* The application must wait until the real-time endpoint is ready before using this URI. *

*/ public void setEndpointUrl(String endpointUrl) { this.endpointUrl = endpointUrl; } /** *

* The URI that specifies where to send real-time prediction requests for the MLModel. *

* Note *

* The application must wait until the real-time endpoint is ready before using this URI. *

*
* * @return The URI that specifies where to send real-time prediction requests for the MLModel.

* Note *

* The application must wait until the real-time endpoint is ready before using this URI. *

*/ public String getEndpointUrl() { return this.endpointUrl; } /** *

* The URI that specifies where to send real-time prediction requests for the MLModel. *

* Note *

* The application must wait until the real-time endpoint is ready before using this URI. *

*
* * @param endpointUrl * The URI that specifies where to send real-time prediction requests for the MLModel.

* Note *

* The application must wait until the real-time endpoint is ready before using this URI. *

* @return Returns a reference to this object so that method calls can be chained together. */ public RealtimeEndpointInfo withEndpointUrl(String endpointUrl) { setEndpointUrl(endpointUrl); return this; } /** *

* The current status of the real-time endpoint for the MLModel. This element can have one of the * following values: *

*
    *
  • NONE - Endpoint does not exist or was previously deleted.
  • *
  • READY - Endpoint is ready to be used for real-time predictions.
  • *
  • UPDATING - Updating/creating the endpoint.
  • *
* * @param endpointStatus * The current status of the real-time endpoint for the MLModel. This element can have one of * the following values:

*
    *
  • NONE - Endpoint does not exist or was previously deleted.
  • *
  • READY - Endpoint is ready to be used for real-time predictions.
  • *
  • UPDATING - Updating/creating the endpoint.
  • * @see RealtimeEndpointStatus */ public void setEndpointStatus(String endpointStatus) { this.endpointStatus = endpointStatus; } /** *

    * The current status of the real-time endpoint for the MLModel. This element can have one of the * following values: *

    *
      *
    • NONE - Endpoint does not exist or was previously deleted.
    • *
    • READY - Endpoint is ready to be used for real-time predictions.
    • *
    • UPDATING - Updating/creating the endpoint.
    • *
    * * @return The current status of the real-time endpoint for the MLModel. This element can have one of * the following values:

    *
      *
    • NONE - Endpoint does not exist or was previously deleted.
    • *
    • READY - Endpoint is ready to be used for real-time predictions.
    • *
    • UPDATING - Updating/creating the endpoint.
    • * @see RealtimeEndpointStatus */ public String getEndpointStatus() { return this.endpointStatus; } /** *

      * The current status of the real-time endpoint for the MLModel. This element can have one of the * following values: *

      *
        *
      • NONE - Endpoint does not exist or was previously deleted.
      • *
      • READY - Endpoint is ready to be used for real-time predictions.
      • *
      • UPDATING - Updating/creating the endpoint.
      • *
      * * @param endpointStatus * The current status of the real-time endpoint for the MLModel. This element can have one of * the following values:

      *
        *
      • NONE - Endpoint does not exist or was previously deleted.
      • *
      • READY - Endpoint is ready to be used for real-time predictions.
      • *
      • UPDATING - Updating/creating the endpoint.
      • * @return Returns a reference to this object so that method calls can be chained together. * @see RealtimeEndpointStatus */ public RealtimeEndpointInfo withEndpointStatus(String endpointStatus) { setEndpointStatus(endpointStatus); return this; } /** *

        * The current status of the real-time endpoint for the MLModel. This element can have one of the * following values: *

        *
          *
        • NONE - Endpoint does not exist or was previously deleted.
        • *
        • READY - Endpoint is ready to be used for real-time predictions.
        • *
        • UPDATING - Updating/creating the endpoint.
        • *
        * * @param endpointStatus * The current status of the real-time endpoint for the MLModel. This element can have one of * the following values:

        *
          *
        • NONE - Endpoint does not exist or was previously deleted.
        • *
        • READY - Endpoint is ready to be used for real-time predictions.
        • *
        • UPDATING - Updating/creating the endpoint.
        • * @see RealtimeEndpointStatus */ public void setEndpointStatus(RealtimeEndpointStatus endpointStatus) { this.endpointStatus = endpointStatus.toString(); } /** *

          * The current status of the real-time endpoint for the MLModel. This element can have one of the * following values: *

          *
            *
          • NONE - Endpoint does not exist or was previously deleted.
          • *
          • READY - Endpoint is ready to be used for real-time predictions.
          • *
          • UPDATING - Updating/creating the endpoint.
          • *
          * * @param endpointStatus * The current status of the real-time endpoint for the MLModel. This element can have one of * the following values:

          *
            *
          • NONE - Endpoint does not exist or was previously deleted.
          • *
          • READY - Endpoint is ready to be used for real-time predictions.
          • *
          • UPDATING - Updating/creating the endpoint.
          • * @return Returns a reference to this object so that method calls can be chained together. * @see RealtimeEndpointStatus */ public RealtimeEndpointInfo withEndpointStatus(RealtimeEndpointStatus endpointStatus) { setEndpointStatus(endpointStatus); return this; } /** * Returns a string representation of this object; useful for testing and debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getPeakRequestsPerSecond() != null) sb.append("PeakRequestsPerSecond: " + getPeakRequestsPerSecond() + ","); if (getCreatedAt() != null) sb.append("CreatedAt: " + getCreatedAt() + ","); if (getEndpointUrl() != null) sb.append("EndpointUrl: " + getEndpointUrl() + ","); if (getEndpointStatus() != null) sb.append("EndpointStatus: " + getEndpointStatus()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RealtimeEndpointInfo == false) return false; RealtimeEndpointInfo other = (RealtimeEndpointInfo) obj; if (other.getPeakRequestsPerSecond() == null ^ this.getPeakRequestsPerSecond() == null) return false; if (other.getPeakRequestsPerSecond() != null && other.getPeakRequestsPerSecond().equals(this.getPeakRequestsPerSecond()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; if (other.getEndpointUrl() == null ^ this.getEndpointUrl() == null) return false; if (other.getEndpointUrl() != null && other.getEndpointUrl().equals(this.getEndpointUrl()) == false) return false; if (other.getEndpointStatus() == null ^ this.getEndpointStatus() == null) return false; if (other.getEndpointStatus() != null && other.getEndpointStatus().equals(this.getEndpointStatus()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPeakRequestsPerSecond() == null) ? 0 : getPeakRequestsPerSecond().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getEndpointUrl() == null) ? 0 : getEndpointUrl().hashCode()); hashCode = prime * hashCode + ((getEndpointStatus() == null) ? 0 : getEndpointStatus().hashCode()); return hashCode; } @Override public RealtimeEndpointInfo clone() { try { return (RealtimeEndpointInfo) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy