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

com.amazonaws.services.cloudwatchrum.model.UpdateRumMetricDefinitionRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for CloudWatch RUM module holds the client classes that are used for communicating with CloudWatch RUM Service

The 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.cloudwatchrum.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 UpdateRumMetricDefinitionRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The name of the CloudWatch RUM app monitor that sends these metrics. *

*/ private String appMonitorName; /** *

* The destination to send the metrics to. Valid values are CloudWatch and Evidently. If * you specify Evidently, you must also specify the ARN of the CloudWatchEvidently experiment that will * receive the metrics and an IAM role that has permission to write to the experiment. *

*/ private String destination; /** *

* This parameter is required if Destination is Evidently. If Destination is * CloudWatch, do not use this parameter. *

*

* This parameter specifies the ARN of the Evidently experiment that is to receive the metrics. You must have * already defined this experiment as a valid destination. For more information, see PutRumMetricsDestination. *

*/ private String destinationArn; /** *

* A structure that contains the new definition that you want to use for this metric. *

*/ private MetricDefinitionRequest metricDefinition; /** *

* The ID of the metric definition to update. *

*/ private String metricDefinitionId; /** *

* The name of the CloudWatch RUM app monitor that sends these metrics. *

* * @param appMonitorName * The name of the CloudWatch RUM app monitor that sends these metrics. */ public void setAppMonitorName(String appMonitorName) { this.appMonitorName = appMonitorName; } /** *

* The name of the CloudWatch RUM app monitor that sends these metrics. *

* * @return The name of the CloudWatch RUM app monitor that sends these metrics. */ public String getAppMonitorName() { return this.appMonitorName; } /** *

* The name of the CloudWatch RUM app monitor that sends these metrics. *

* * @param appMonitorName * The name of the CloudWatch RUM app monitor that sends these metrics. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRumMetricDefinitionRequest withAppMonitorName(String appMonitorName) { setAppMonitorName(appMonitorName); return this; } /** *

* The destination to send the metrics to. Valid values are CloudWatch and Evidently. If * you specify Evidently, you must also specify the ARN of the CloudWatchEvidently experiment that will * receive the metrics and an IAM role that has permission to write to the experiment. *

* * @param destination * The destination to send the metrics to. Valid values are CloudWatch and * Evidently. If you specify Evidently, you must also specify the ARN of the * CloudWatchEvidently experiment that will receive the metrics and an IAM role that has permission to write * to the experiment. * @see MetricDestination */ public void setDestination(String destination) { this.destination = destination; } /** *

* The destination to send the metrics to. Valid values are CloudWatch and Evidently. If * you specify Evidently, you must also specify the ARN of the CloudWatchEvidently experiment that will * receive the metrics and an IAM role that has permission to write to the experiment. *

* * @return The destination to send the metrics to. Valid values are CloudWatch and * Evidently. If you specify Evidently, you must also specify the ARN of the * CloudWatchEvidently experiment that will receive the metrics and an IAM role that has permission to write * to the experiment. * @see MetricDestination */ public String getDestination() { return this.destination; } /** *

* The destination to send the metrics to. Valid values are CloudWatch and Evidently. If * you specify Evidently, you must also specify the ARN of the CloudWatchEvidently experiment that will * receive the metrics and an IAM role that has permission to write to the experiment. *

* * @param destination * The destination to send the metrics to. Valid values are CloudWatch and * Evidently. If you specify Evidently, you must also specify the ARN of the * CloudWatchEvidently experiment that will receive the metrics and an IAM role that has permission to write * to the experiment. * @return Returns a reference to this object so that method calls can be chained together. * @see MetricDestination */ public UpdateRumMetricDefinitionRequest withDestination(String destination) { setDestination(destination); return this; } /** *

* The destination to send the metrics to. Valid values are CloudWatch and Evidently. If * you specify Evidently, you must also specify the ARN of the CloudWatchEvidently experiment that will * receive the metrics and an IAM role that has permission to write to the experiment. *

* * @param destination * The destination to send the metrics to. Valid values are CloudWatch and * Evidently. If you specify Evidently, you must also specify the ARN of the * CloudWatchEvidently experiment that will receive the metrics and an IAM role that has permission to write * to the experiment. * @return Returns a reference to this object so that method calls can be chained together. * @see MetricDestination */ public UpdateRumMetricDefinitionRequest withDestination(MetricDestination destination) { this.destination = destination.toString(); return this; } /** *

* This parameter is required if Destination is Evidently. If Destination is * CloudWatch, do not use this parameter. *

*

* This parameter specifies the ARN of the Evidently experiment that is to receive the metrics. You must have * already defined this experiment as a valid destination. For more information, see PutRumMetricsDestination. *

* * @param destinationArn * This parameter is required if Destination is Evidently. If * Destination is CloudWatch, do not use this parameter.

*

* This parameter specifies the ARN of the Evidently experiment that is to receive the metrics. You must have * already defined this experiment as a valid destination. For more information, see PutRumMetricsDestination. */ public void setDestinationArn(String destinationArn) { this.destinationArn = destinationArn; } /** *

* This parameter is required if Destination is Evidently. If Destination is * CloudWatch, do not use this parameter. *

*

* This parameter specifies the ARN of the Evidently experiment that is to receive the metrics. You must have * already defined this experiment as a valid destination. For more information, see PutRumMetricsDestination. *

* * @return This parameter is required if Destination is Evidently. If * Destination is CloudWatch, do not use this parameter.

*

* This parameter specifies the ARN of the Evidently experiment that is to receive the metrics. You must * have already defined this experiment as a valid destination. For more information, see PutRumMetricsDestination. */ public String getDestinationArn() { return this.destinationArn; } /** *

* This parameter is required if Destination is Evidently. If Destination is * CloudWatch, do not use this parameter. *

*

* This parameter specifies the ARN of the Evidently experiment that is to receive the metrics. You must have * already defined this experiment as a valid destination. For more information, see PutRumMetricsDestination. *

* * @param destinationArn * This parameter is required if Destination is Evidently. If * Destination is CloudWatch, do not use this parameter.

*

* This parameter specifies the ARN of the Evidently experiment that is to receive the metrics. You must have * already defined this experiment as a valid destination. For more information, see PutRumMetricsDestination. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRumMetricDefinitionRequest withDestinationArn(String destinationArn) { setDestinationArn(destinationArn); return this; } /** *

* A structure that contains the new definition that you want to use for this metric. *

* * @param metricDefinition * A structure that contains the new definition that you want to use for this metric. */ public void setMetricDefinition(MetricDefinitionRequest metricDefinition) { this.metricDefinition = metricDefinition; } /** *

* A structure that contains the new definition that you want to use for this metric. *

* * @return A structure that contains the new definition that you want to use for this metric. */ public MetricDefinitionRequest getMetricDefinition() { return this.metricDefinition; } /** *

* A structure that contains the new definition that you want to use for this metric. *

* * @param metricDefinition * A structure that contains the new definition that you want to use for this metric. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRumMetricDefinitionRequest withMetricDefinition(MetricDefinitionRequest metricDefinition) { setMetricDefinition(metricDefinition); return this; } /** *

* The ID of the metric definition to update. *

* * @param metricDefinitionId * The ID of the metric definition to update. */ public void setMetricDefinitionId(String metricDefinitionId) { this.metricDefinitionId = metricDefinitionId; } /** *

* The ID of the metric definition to update. *

* * @return The ID of the metric definition to update. */ public String getMetricDefinitionId() { return this.metricDefinitionId; } /** *

* The ID of the metric definition to update. *

* * @param metricDefinitionId * The ID of the metric definition to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRumMetricDefinitionRequest withMetricDefinitionId(String metricDefinitionId) { setMetricDefinitionId(metricDefinitionId); 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 (getAppMonitorName() != null) sb.append("AppMonitorName: ").append(getAppMonitorName()).append(","); if (getDestination() != null) sb.append("Destination: ").append(getDestination()).append(","); if (getDestinationArn() != null) sb.append("DestinationArn: ").append(getDestinationArn()).append(","); if (getMetricDefinition() != null) sb.append("MetricDefinition: ").append(getMetricDefinition()).append(","); if (getMetricDefinitionId() != null) sb.append("MetricDefinitionId: ").append(getMetricDefinitionId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateRumMetricDefinitionRequest == false) return false; UpdateRumMetricDefinitionRequest other = (UpdateRumMetricDefinitionRequest) obj; if (other.getAppMonitorName() == null ^ this.getAppMonitorName() == null) return false; if (other.getAppMonitorName() != null && other.getAppMonitorName().equals(this.getAppMonitorName()) == false) return false; if (other.getDestination() == null ^ this.getDestination() == null) return false; if (other.getDestination() != null && other.getDestination().equals(this.getDestination()) == false) return false; if (other.getDestinationArn() == null ^ this.getDestinationArn() == null) return false; if (other.getDestinationArn() != null && other.getDestinationArn().equals(this.getDestinationArn()) == false) return false; if (other.getMetricDefinition() == null ^ this.getMetricDefinition() == null) return false; if (other.getMetricDefinition() != null && other.getMetricDefinition().equals(this.getMetricDefinition()) == false) return false; if (other.getMetricDefinitionId() == null ^ this.getMetricDefinitionId() == null) return false; if (other.getMetricDefinitionId() != null && other.getMetricDefinitionId().equals(this.getMetricDefinitionId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAppMonitorName() == null) ? 0 : getAppMonitorName().hashCode()); hashCode = prime * hashCode + ((getDestination() == null) ? 0 : getDestination().hashCode()); hashCode = prime * hashCode + ((getDestinationArn() == null) ? 0 : getDestinationArn().hashCode()); hashCode = prime * hashCode + ((getMetricDefinition() == null) ? 0 : getMetricDefinition().hashCode()); hashCode = prime * hashCode + ((getMetricDefinitionId() == null) ? 0 : getMetricDefinitionId().hashCode()); return hashCode; } @Override public UpdateRumMetricDefinitionRequest clone() { return (UpdateRumMetricDefinitionRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy