/* * 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.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 PutRumMetricsDestinationRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The name of the CloudWatch RUM app monitor that will send the metrics. *
*/ private String appMonitorName; /** *
* Defines 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 is to be the destination and an IAM role that has permission to write to the
* experiment.
*
* Use this parameter only if Destination
is Evidently
. This parameter specifies the ARN
* of the Evidently experiment that will receive the extended metrics.
*
* This parameter is required if Destination
is Evidently
. If Destination
is
* CloudWatch
, do not use this parameter.
*
* This parameter specifies the ARN of an IAM role that RUM will assume to write to the Evidently experiment that * you are sending metrics to. This role must have permission to write to that experiment. *
*/ private String iamRoleArn; /** ** The name of the CloudWatch RUM app monitor that will send the metrics. *
* * @param appMonitorName * The name of the CloudWatch RUM app monitor that will send the metrics. */ public void setAppMonitorName(String appMonitorName) { this.appMonitorName = appMonitorName; } /** ** The name of the CloudWatch RUM app monitor that will send the metrics. *
* * @return The name of the CloudWatch RUM app monitor that will send the metrics. */ public String getAppMonitorName() { return this.appMonitorName; } /** ** The name of the CloudWatch RUM app monitor that will send the metrics. *
* * @param appMonitorName * The name of the CloudWatch RUM app monitor that will send the metrics. * @return Returns a reference to this object so that method calls can be chained together. */ public PutRumMetricsDestinationRequest withAppMonitorName(String appMonitorName) { setAppMonitorName(appMonitorName); return this; } /** *
* Defines 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 is to be the destination and an IAM role that has permission to write to the
* experiment.
*
CloudWatch
and
* Evidently
. If you specify Evidently
, you must also specify the ARN of the
* CloudWatchEvidently experiment that is to be the destination and an IAM role that has permission to write
* to the experiment.
* @see MetricDestination
*/
public void setDestination(String destination) {
this.destination = destination;
}
/**
*
* Defines 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 is to be the destination and an IAM role that has permission to write to the
* experiment.
*
CloudWatch
and
* Evidently
. If you specify Evidently
, you must also specify the ARN of the
* CloudWatchEvidently experiment that is to be the destination and an IAM role that has permission to write
* to the experiment.
* @see MetricDestination
*/
public String getDestination() {
return this.destination;
}
/**
*
* Defines 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 is to be the destination and an IAM role that has permission to write to the
* experiment.
*
CloudWatch
and
* Evidently
. If you specify Evidently
, you must also specify the ARN of the
* CloudWatchEvidently experiment that is to be the destination 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 PutRumMetricsDestinationRequest withDestination(String destination) {
setDestination(destination);
return this;
}
/**
*
* Defines 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 is to be the destination and an IAM role that has permission to write to the
* experiment.
*
CloudWatch
and
* Evidently
. If you specify Evidently
, you must also specify the ARN of the
* CloudWatchEvidently experiment that is to be the destination 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 PutRumMetricsDestinationRequest withDestination(MetricDestination destination) {
this.destination = destination.toString();
return this;
}
/**
*
* Use this parameter only if Destination
is Evidently
. This parameter specifies the ARN
* of the Evidently experiment that will receive the extended metrics.
*
Destination
is Evidently
. This parameter specifies
* the ARN of the Evidently experiment that will receive the extended metrics.
*/
public void setDestinationArn(String destinationArn) {
this.destinationArn = destinationArn;
}
/**
*
* Use this parameter only if Destination
is Evidently
. This parameter specifies the ARN
* of the Evidently experiment that will receive the extended metrics.
*
Destination
is Evidently
. This parameter specifies
* the ARN of the Evidently experiment that will receive the extended metrics.
*/
public String getDestinationArn() {
return this.destinationArn;
}
/**
*
* Use this parameter only if Destination
is Evidently
. This parameter specifies the ARN
* of the Evidently experiment that will receive the extended metrics.
*
Destination
is Evidently
. This parameter specifies
* the ARN of the Evidently experiment that will receive the extended metrics.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PutRumMetricsDestinationRequest withDestinationArn(String destinationArn) {
setDestinationArn(destinationArn);
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 an IAM role that RUM will assume to write to the Evidently experiment that * you are sending metrics to. This role must have permission to write to that experiment. *
* * @param iamRoleArn * This parameter is required ifDestination
is Evidently
. If
* Destination
is CloudWatch
, do not use this parameter.
* * This parameter specifies the ARN of an IAM role that RUM will assume to write to the Evidently experiment * that you are sending metrics to. This role must have permission to write to that experiment. */ public void setIamRoleArn(String iamRoleArn) { this.iamRoleArn = iamRoleArn; } /** *
* This parameter is required if Destination
is Evidently
. If Destination
is
* CloudWatch
, do not use this parameter.
*
* This parameter specifies the ARN of an IAM role that RUM will assume to write to the Evidently experiment that * you are sending metrics to. This role must have permission to write to that experiment. *
* * @return This parameter is required ifDestination
is Evidently
. If
* Destination
is CloudWatch
, do not use this parameter.
* * This parameter specifies the ARN of an IAM role that RUM will assume to write to the Evidently experiment * that you are sending metrics to. This role must have permission to write to that experiment. */ public String getIamRoleArn() { return this.iamRoleArn; } /** *
* This parameter is required if Destination
is Evidently
. If Destination
is
* CloudWatch
, do not use this parameter.
*
* This parameter specifies the ARN of an IAM role that RUM will assume to write to the Evidently experiment that * you are sending metrics to. This role must have permission to write to that experiment. *
* * @param iamRoleArn * This parameter is required ifDestination
is Evidently
. If
* Destination
is CloudWatch
, do not use this parameter.
* * This parameter specifies the ARN of an IAM role that RUM will assume to write to the Evidently experiment * that you are sending metrics to. This role must have permission to write to that experiment. * @return Returns a reference to this object so that method calls can be chained together. */ public PutRumMetricsDestinationRequest withIamRoleArn(String iamRoleArn) { setIamRoleArn(iamRoleArn); 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 (getIamRoleArn() != null) sb.append("IamRoleArn: ").append(getIamRoleArn()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PutRumMetricsDestinationRequest == false) return false; PutRumMetricsDestinationRequest other = (PutRumMetricsDestinationRequest) 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.getIamRoleArn() == null ^ this.getIamRoleArn() == null) return false; if (other.getIamRoleArn() != null && other.getIamRoleArn().equals(this.getIamRoleArn()) == 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 + ((getIamRoleArn() == null) ? 0 : getIamRoleArn().hashCode()); return hashCode; } @Override public PutRumMetricsDestinationRequest clone() { return (PutRumMetricsDestinationRequest) super.clone(); } }