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

com.amazonaws.services.lookoutmetrics.model.DetectMetricSetConfigRequest Maven / Gradle / Ivy

Go to download

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

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

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

import com.amazonaws.AmazonWebServiceRequest;

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

    /**
     * 

* An anomaly detector ARN. *

*/ private String anomalyDetectorArn; /** *

* A data source. *

*/ private AutoDetectionMetricSource autoDetectionMetricSource; /** *

* An anomaly detector ARN. *

* * @param anomalyDetectorArn * An anomaly detector ARN. */ public void setAnomalyDetectorArn(String anomalyDetectorArn) { this.anomalyDetectorArn = anomalyDetectorArn; } /** *

* An anomaly detector ARN. *

* * @return An anomaly detector ARN. */ public String getAnomalyDetectorArn() { return this.anomalyDetectorArn; } /** *

* An anomaly detector ARN. *

* * @param anomalyDetectorArn * An anomaly detector ARN. * @return Returns a reference to this object so that method calls can be chained together. */ public DetectMetricSetConfigRequest withAnomalyDetectorArn(String anomalyDetectorArn) { setAnomalyDetectorArn(anomalyDetectorArn); return this; } /** *

* A data source. *

* * @param autoDetectionMetricSource * A data source. */ public void setAutoDetectionMetricSource(AutoDetectionMetricSource autoDetectionMetricSource) { this.autoDetectionMetricSource = autoDetectionMetricSource; } /** *

* A data source. *

* * @return A data source. */ public AutoDetectionMetricSource getAutoDetectionMetricSource() { return this.autoDetectionMetricSource; } /** *

* A data source. *

* * @param autoDetectionMetricSource * A data source. * @return Returns a reference to this object so that method calls can be chained together. */ public DetectMetricSetConfigRequest withAutoDetectionMetricSource(AutoDetectionMetricSource autoDetectionMetricSource) { setAutoDetectionMetricSource(autoDetectionMetricSource); 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 (getAnomalyDetectorArn() != null) sb.append("AnomalyDetectorArn: ").append(getAnomalyDetectorArn()).append(","); if (getAutoDetectionMetricSource() != null) sb.append("AutoDetectionMetricSource: ").append(getAutoDetectionMetricSource()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DetectMetricSetConfigRequest == false) return false; DetectMetricSetConfigRequest other = (DetectMetricSetConfigRequest) obj; if (other.getAnomalyDetectorArn() == null ^ this.getAnomalyDetectorArn() == null) return false; if (other.getAnomalyDetectorArn() != null && other.getAnomalyDetectorArn().equals(this.getAnomalyDetectorArn()) == false) return false; if (other.getAutoDetectionMetricSource() == null ^ this.getAutoDetectionMetricSource() == null) return false; if (other.getAutoDetectionMetricSource() != null && other.getAutoDetectionMetricSource().equals(this.getAutoDetectionMetricSource()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAnomalyDetectorArn() == null) ? 0 : getAnomalyDetectorArn().hashCode()); hashCode = prime * hashCode + ((getAutoDetectionMetricSource() == null) ? 0 : getAutoDetectionMetricSource().hashCode()); return hashCode; } @Override public DetectMetricSetConfigRequest clone() { return (DetectMetricSetConfigRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy