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

com.amazonaws.services.codeguruprofiler.model.SubmitFeedbackRequest 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 SubmitFeedbackRequest. *

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

* The universally unique identifier (UUID) of the * AnomalyInstance object that is included in the analysis data. *

*/ private String anomalyInstanceId; /** *

* Optional feedback about this anomaly. *

*/ private String comment; /** *

* The name of the profiling group that is associated with the analysis data. *

*/ private String profilingGroupName; /** *

* The feedback tpye. Thee are two valid values, Positive and Negative. *

*/ private String type; /** *

* The universally unique identifier (UUID) of the * AnomalyInstance object that is included in the analysis data. *

* * @param anomalyInstanceId * The universally unique identifier (UUID) of the * AnomalyInstance object that is included in the analysis data. */ public void setAnomalyInstanceId(String anomalyInstanceId) { this.anomalyInstanceId = anomalyInstanceId; } /** *

* The universally unique identifier (UUID) of the * AnomalyInstance object that is included in the analysis data. *

* * @return The universally unique identifier (UUID) of the * AnomalyInstance object that is included in the analysis data. */ public String getAnomalyInstanceId() { return this.anomalyInstanceId; } /** *

* The universally unique identifier (UUID) of the * AnomalyInstance object that is included in the analysis data. *

* * @param anomalyInstanceId * The universally unique identifier (UUID) of the * AnomalyInstance object that is included in the analysis data. * @return Returns a reference to this object so that method calls can be chained together. */ public SubmitFeedbackRequest withAnomalyInstanceId(String anomalyInstanceId) { setAnomalyInstanceId(anomalyInstanceId); return this; } /** *

* Optional feedback about this anomaly. *

* * @param comment * Optional feedback about this anomaly. */ public void setComment(String comment) { this.comment = comment; } /** *

* Optional feedback about this anomaly. *

* * @return Optional feedback about this anomaly. */ public String getComment() { return this.comment; } /** *

* Optional feedback about this anomaly. *

* * @param comment * Optional feedback about this anomaly. * @return Returns a reference to this object so that method calls can be chained together. */ public SubmitFeedbackRequest withComment(String comment) { setComment(comment); return this; } /** *

* The name of the profiling group that is associated with the analysis data. *

* * @param profilingGroupName * The name of the profiling group that is associated with the analysis data. */ public void setProfilingGroupName(String profilingGroupName) { this.profilingGroupName = profilingGroupName; } /** *

* The name of the profiling group that is associated with the analysis data. *

* * @return The name of the profiling group that is associated with the analysis data. */ public String getProfilingGroupName() { return this.profilingGroupName; } /** *

* The name of the profiling group that is associated with the analysis data. *

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

* The feedback tpye. Thee are two valid values, Positive and Negative. *

* * @param type * The feedback tpye. Thee are two valid values, Positive and Negative. * @see FeedbackType */ public void setType(String type) { this.type = type; } /** *

* The feedback tpye. Thee are two valid values, Positive and Negative. *

* * @return The feedback tpye. Thee are two valid values, Positive and Negative. * @see FeedbackType */ public String getType() { return this.type; } /** *

* The feedback tpye. Thee are two valid values, Positive and Negative. *

* * @param type * The feedback tpye. Thee are two valid values, Positive and Negative. * @return Returns a reference to this object so that method calls can be chained together. * @see FeedbackType */ public SubmitFeedbackRequest withType(String type) { setType(type); return this; } /** *

* The feedback tpye. Thee are two valid values, Positive and Negative. *

* * @param type * The feedback tpye. Thee are two valid values, Positive and Negative. * @return Returns a reference to this object so that method calls can be chained together. * @see FeedbackType */ public SubmitFeedbackRequest withType(FeedbackType type) { this.type = type.toString(); 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 (getAnomalyInstanceId() != null) sb.append("AnomalyInstanceId: ").append(getAnomalyInstanceId()).append(","); if (getComment() != null) sb.append("Comment: ").append(getComment()).append(","); if (getProfilingGroupName() != null) sb.append("ProfilingGroupName: ").append(getProfilingGroupName()).append(","); if (getType() != null) sb.append("Type: ").append(getType()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SubmitFeedbackRequest == false) return false; SubmitFeedbackRequest other = (SubmitFeedbackRequest) obj; if (other.getAnomalyInstanceId() == null ^ this.getAnomalyInstanceId() == null) return false; if (other.getAnomalyInstanceId() != null && other.getAnomalyInstanceId().equals(this.getAnomalyInstanceId()) == false) return false; if (other.getComment() == null ^ this.getComment() == null) return false; if (other.getComment() != null && other.getComment().equals(this.getComment()) == 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.getType() == null ^ this.getType() == null) return false; if (other.getType() != null && other.getType().equals(this.getType()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAnomalyInstanceId() == null) ? 0 : getAnomalyInstanceId().hashCode()); hashCode = prime * hashCode + ((getComment() == null) ? 0 : getComment().hashCode()); hashCode = prime * hashCode + ((getProfilingGroupName() == null) ? 0 : getProfilingGroupName().hashCode()); hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode()); return hashCode; } @Override public SubmitFeedbackRequest clone() { return (SubmitFeedbackRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy