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

com.amazonaws.services.codeguruprofiler.model.GetRecommendationsRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon CodeGuru Profiler module holds the client classes that are used for communicating with Amazon CodeGuru Profiler Service

There is a newer version: 1.12.778
Show newest version
/*
 * 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.codeguruprofiler.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* The structure representing the GetRecommendationsRequest. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class GetRecommendationsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The start time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. *

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

* The language used to provide analysis. Specify using a string that is one of the following BCP 47 * language codes. *

*
    *
  • *

    * de-DE - German, Germany *

    *
  • *
  • *

    * en-GB - English, United Kingdom *

    *
  • *
  • *

    * en-US - English, United States *

    *
  • *
  • *

    * es-ES - Spanish, Spain *

    *
  • *
  • *

    * fr-FR - French, France *

    *
  • *
  • *

    * it-IT - Italian, Italy *

    *
  • *
  • *

    * ja-JP - Japanese, Japan *

    *
  • *
  • *

    * ko-KR - Korean, Republic of Korea *

    *
  • *
  • *

    * pt-BR - Portugese, Brazil *

    *
  • *
  • *

    * zh-CN - Chinese, China *

    *
  • *
  • *

    * zh-TW - Chinese, Taiwan *

    *
  • *
*/ private String locale; /** *

* The name of the profiling group to get analysis data about. *

*/ private String profilingGroupName; /** *

* The end time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. *

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

* The start time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. *

* * @param endTime * The start time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. */ public void setEndTime(java.util.Date endTime) { this.endTime = endTime; } /** *

* The start time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. *

* * @return The start time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. */ public java.util.Date getEndTime() { return this.endTime; } /** *

* The start time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. *

* * @param endTime * The start time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRecommendationsRequest withEndTime(java.util.Date endTime) { setEndTime(endTime); return this; } /** *

* The language used to provide analysis. Specify using a string that is one of the following BCP 47 * language codes. *

*
    *
  • *

    * de-DE - German, Germany *

    *
  • *
  • *

    * en-GB - English, United Kingdom *

    *
  • *
  • *

    * en-US - English, United States *

    *
  • *
  • *

    * es-ES - Spanish, Spain *

    *
  • *
  • *

    * fr-FR - French, France *

    *
  • *
  • *

    * it-IT - Italian, Italy *

    *
  • *
  • *

    * ja-JP - Japanese, Japan *

    *
  • *
  • *

    * ko-KR - Korean, Republic of Korea *

    *
  • *
  • *

    * pt-BR - Portugese, Brazil *

    *
  • *
  • *

    * zh-CN - Chinese, China *

    *
  • *
  • *

    * zh-TW - Chinese, Taiwan *

    *
  • *
* * @param locale * The language used to provide analysis. Specify using a string that is one of the following * BCP 47 language codes.

*
    *
  • *

    * de-DE - German, Germany *

    *
  • *
  • *

    * en-GB - English, United Kingdom *

    *
  • *
  • *

    * en-US - English, United States *

    *
  • *
  • *

    * es-ES - Spanish, Spain *

    *
  • *
  • *

    * fr-FR - French, France *

    *
  • *
  • *

    * it-IT - Italian, Italy *

    *
  • *
  • *

    * ja-JP - Japanese, Japan *

    *
  • *
  • *

    * ko-KR - Korean, Republic of Korea *

    *
  • *
  • *

    * pt-BR - Portugese, Brazil *

    *
  • *
  • *

    * zh-CN - Chinese, China *

    *
  • *
  • *

    * zh-TW - Chinese, Taiwan *

    *
  • */ public void setLocale(String locale) { this.locale = locale; } /** *

    * The language used to provide analysis. Specify using a string that is one of the following BCP 47 * language codes. *

    *
      *
    • *

      * de-DE - German, Germany *

      *
    • *
    • *

      * en-GB - English, United Kingdom *

      *
    • *
    • *

      * en-US - English, United States *

      *
    • *
    • *

      * es-ES - Spanish, Spain *

      *
    • *
    • *

      * fr-FR - French, France *

      *
    • *
    • *

      * it-IT - Italian, Italy *

      *
    • *
    • *

      * ja-JP - Japanese, Japan *

      *
    • *
    • *

      * ko-KR - Korean, Republic of Korea *

      *
    • *
    • *

      * pt-BR - Portugese, Brazil *

      *
    • *
    • *

      * zh-CN - Chinese, China *

      *
    • *
    • *

      * zh-TW - Chinese, Taiwan *

      *
    • *
    * * @return The language used to provide analysis. Specify using a string that is one of the following * BCP 47 language codes.

    *
      *
    • *

      * de-DE - German, Germany *

      *
    • *
    • *

      * en-GB - English, United Kingdom *

      *
    • *
    • *

      * en-US - English, United States *

      *
    • *
    • *

      * es-ES - Spanish, Spain *

      *
    • *
    • *

      * fr-FR - French, France *

      *
    • *
    • *

      * it-IT - Italian, Italy *

      *
    • *
    • *

      * ja-JP - Japanese, Japan *

      *
    • *
    • *

      * ko-KR - Korean, Republic of Korea *

      *
    • *
    • *

      * pt-BR - Portugese, Brazil *

      *
    • *
    • *

      * zh-CN - Chinese, China *

      *
    • *
    • *

      * zh-TW - Chinese, Taiwan *

      *
    • */ public String getLocale() { return this.locale; } /** *

      * The language used to provide analysis. Specify using a string that is one of the following BCP 47 * language codes. *

      *
        *
      • *

        * de-DE - German, Germany *

        *
      • *
      • *

        * en-GB - English, United Kingdom *

        *
      • *
      • *

        * en-US - English, United States *

        *
      • *
      • *

        * es-ES - Spanish, Spain *

        *
      • *
      • *

        * fr-FR - French, France *

        *
      • *
      • *

        * it-IT - Italian, Italy *

        *
      • *
      • *

        * ja-JP - Japanese, Japan *

        *
      • *
      • *

        * ko-KR - Korean, Republic of Korea *

        *
      • *
      • *

        * pt-BR - Portugese, Brazil *

        *
      • *
      • *

        * zh-CN - Chinese, China *

        *
      • *
      • *

        * zh-TW - Chinese, Taiwan *

        *
      • *
      * * @param locale * The language used to provide analysis. Specify using a string that is one of the following * BCP 47 language codes.

      *
        *
      • *

        * de-DE - German, Germany *

        *
      • *
      • *

        * en-GB - English, United Kingdom *

        *
      • *
      • *

        * en-US - English, United States *

        *
      • *
      • *

        * es-ES - Spanish, Spain *

        *
      • *
      • *

        * fr-FR - French, France *

        *
      • *
      • *

        * it-IT - Italian, Italy *

        *
      • *
      • *

        * ja-JP - Japanese, Japan *

        *
      • *
      • *

        * ko-KR - Korean, Republic of Korea *

        *
      • *
      • *

        * pt-BR - Portugese, Brazil *

        *
      • *
      • *

        * zh-CN - Chinese, China *

        *
      • *
      • *

        * zh-TW - Chinese, Taiwan *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public GetRecommendationsRequest withLocale(String locale) { setLocale(locale); return this; } /** *

        * The name of the profiling group to get analysis data about. *

        * * @param profilingGroupName * The name of the profiling group to get analysis data about. */ public void setProfilingGroupName(String profilingGroupName) { this.profilingGroupName = profilingGroupName; } /** *

        * The name of the profiling group to get analysis data about. *

        * * @return The name of the profiling group to get analysis data about. */ public String getProfilingGroupName() { return this.profilingGroupName; } /** *

        * The name of the profiling group to get analysis data about. *

        * * @param profilingGroupName * The name of the profiling group to get analysis data about. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRecommendationsRequest withProfilingGroupName(String profilingGroupName) { setProfilingGroupName(profilingGroupName); return this; } /** *

        * The end time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. *

        * * @param startTime * The end time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. */ public void setStartTime(java.util.Date startTime) { this.startTime = startTime; } /** *

        * The end time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. *

        * * @return The end time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. */ public java.util.Date getStartTime() { return this.startTime; } /** *

        * The end time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. *

        * * @param startTime * The end time of the profile to get analysis data about. You must specify startTime and * endTime. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z * represents 1 millisecond past June 1, 2020 1:15:02 PM UTC. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRecommendationsRequest withStartTime(java.util.Date startTime) { setStartTime(startTime); 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 (getEndTime() != null) sb.append("EndTime: ").append(getEndTime()).append(","); if (getLocale() != null) sb.append("Locale: ").append(getLocale()).append(","); if (getProfilingGroupName() != null) sb.append("ProfilingGroupName: ").append(getProfilingGroupName()).append(","); if (getStartTime() != null) sb.append("StartTime: ").append(getStartTime()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetRecommendationsRequest == false) return false; GetRecommendationsRequest other = (GetRecommendationsRequest) obj; if (other.getEndTime() == null ^ this.getEndTime() == null) return false; if (other.getEndTime() != null && other.getEndTime().equals(this.getEndTime()) == false) return false; if (other.getLocale() == null ^ this.getLocale() == null) return false; if (other.getLocale() != null && other.getLocale().equals(this.getLocale()) == false) return false; if (other.getProfilingGroupName() == null ^ this.getProfilingGroupName() == null) return false; if (other.getProfilingGroupName() != null && other.getProfilingGroupName().equals(this.getProfilingGroupName()) == false) return false; if (other.getStartTime() == null ^ this.getStartTime() == null) return false; if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getEndTime() == null) ? 0 : getEndTime().hashCode()); hashCode = prime * hashCode + ((getLocale() == null) ? 0 : getLocale().hashCode()); hashCode = prime * hashCode + ((getProfilingGroupName() == null) ? 0 : getProfilingGroupName().hashCode()); hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode()); return hashCode; } @Override public GetRecommendationsRequest clone() { return (GetRecommendationsRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy