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

com.amazonaws.services.route53recoverycontrolconfig.model.CreateControlPanelRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Route53 Recovery Control Config module holds the client classes that are used for communicating with AWS Route53 Recovery Control Config 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.route53recoverycontrolconfig.model;

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

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* The details of the control panel that you're creating. *

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

* A unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request with an action, * specify a client token in the request. *

*/ private String clientToken; /** *

* The Amazon Resource Name (ARN) of the cluster for the control panel. *

*/ private String clusterArn; /** *

* The name of the control panel. *

*/ private String controlPanelName; /** *

* The tags associated with the control panel. *

*/ private java.util.Map tags; /** *

* A unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request with an action, * specify a client token in the request. *

* * @param clientToken * A unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request with an * action, specify a client token in the request. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* A unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request with an action, * specify a client token in the request. *

* * @return A unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request with an * action, specify a client token in the request. */ public String getClientToken() { return this.clientToken; } /** *

* A unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request with an action, * specify a client token in the request. *

* * @param clientToken * A unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request with an * action, specify a client token in the request. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateControlPanelRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* The Amazon Resource Name (ARN) of the cluster for the control panel. *

* * @param clusterArn * The Amazon Resource Name (ARN) of the cluster for the control panel. */ public void setClusterArn(String clusterArn) { this.clusterArn = clusterArn; } /** *

* The Amazon Resource Name (ARN) of the cluster for the control panel. *

* * @return The Amazon Resource Name (ARN) of the cluster for the control panel. */ public String getClusterArn() { return this.clusterArn; } /** *

* The Amazon Resource Name (ARN) of the cluster for the control panel. *

* * @param clusterArn * The Amazon Resource Name (ARN) of the cluster for the control panel. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateControlPanelRequest withClusterArn(String clusterArn) { setClusterArn(clusterArn); return this; } /** *

* The name of the control panel. *

* * @param controlPanelName * The name of the control panel. */ public void setControlPanelName(String controlPanelName) { this.controlPanelName = controlPanelName; } /** *

* The name of the control panel. *

* * @return The name of the control panel. */ public String getControlPanelName() { return this.controlPanelName; } /** *

* The name of the control panel. *

* * @param controlPanelName * The name of the control panel. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateControlPanelRequest withControlPanelName(String controlPanelName) { setControlPanelName(controlPanelName); return this; } /** *

* The tags associated with the control panel. *

* * @return The tags associated with the control panel. */ public java.util.Map getTags() { return tags; } /** *

* The tags associated with the control panel. *

* * @param tags * The tags associated with the control panel. */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

* The tags associated with the control panel. *

* * @param tags * The tags associated with the control panel. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateControlPanelRequest withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see CreateControlPanelRequest#withTags * @returns a reference to this object so that method calls can be chained together. */ public CreateControlPanelRequest addTagsEntry(String key, String value) { if (null == this.tags) { this.tags = new java.util.HashMap(); } if (this.tags.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.tags.put(key, value); return this; } /** * Removes all the entries added into Tags. * * @return Returns a reference to this object so that method calls can be chained together. */ public CreateControlPanelRequest clearTagsEntries() { this.tags = null; 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 (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getClusterArn() != null) sb.append("ClusterArn: ").append(getClusterArn()).append(","); if (getControlPanelName() != null) sb.append("ControlPanelName: ").append(getControlPanelName()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateControlPanelRequest == false) return false; CreateControlPanelRequest other = (CreateControlPanelRequest) obj; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getClusterArn() == null ^ this.getClusterArn() == null) return false; if (other.getClusterArn() != null && other.getClusterArn().equals(this.getClusterArn()) == false) return false; if (other.getControlPanelName() == null ^ this.getControlPanelName() == null) return false; if (other.getControlPanelName() != null && other.getControlPanelName().equals(this.getControlPanelName()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getClusterArn() == null) ? 0 : getClusterArn().hashCode()); hashCode = prime * hashCode + ((getControlPanelName() == null) ? 0 : getControlPanelName().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateControlPanelRequest clone() { return (CreateControlPanelRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy