com.amazonaws.services.redshift.model.ModifyClusterIamRolesRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-redshift Show documentation
/*
* 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.redshift.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 ModifyClusterIamRolesRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The unique identifier of the cluster for which you want to associate or disassociate IAM roles.
*
*/
private String clusterIdentifier;
/**
*
* Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name (ARN)
* format.
*
*/
private com.amazonaws.internal.SdkInternalList addIamRoles;
/**
*
* Zero or more IAM roles in ARN format to disassociate from the cluster.
*
*/
private com.amazonaws.internal.SdkInternalList removeIamRoles;
/**
*
* The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was last
* modified.
*
*/
private String defaultIamRoleArn;
/**
*
* The unique identifier of the cluster for which you want to associate or disassociate IAM roles.
*
*
* @param clusterIdentifier
* The unique identifier of the cluster for which you want to associate or disassociate IAM roles.
*/
public void setClusterIdentifier(String clusterIdentifier) {
this.clusterIdentifier = clusterIdentifier;
}
/**
*
* The unique identifier of the cluster for which you want to associate or disassociate IAM roles.
*
*
* @return The unique identifier of the cluster for which you want to associate or disassociate IAM roles.
*/
public String getClusterIdentifier() {
return this.clusterIdentifier;
}
/**
*
* The unique identifier of the cluster for which you want to associate or disassociate IAM roles.
*
*
* @param clusterIdentifier
* The unique identifier of the cluster for which you want to associate or disassociate IAM roles.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyClusterIamRolesRequest withClusterIdentifier(String clusterIdentifier) {
setClusterIdentifier(clusterIdentifier);
return this;
}
/**
*
* Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name (ARN)
* format.
*
*
* @return Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name
* (ARN) format.
*/
public java.util.List getAddIamRoles() {
if (addIamRoles == null) {
addIamRoles = new com.amazonaws.internal.SdkInternalList();
}
return addIamRoles;
}
/**
*
* Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name (ARN)
* format.
*
*
* @param addIamRoles
* Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name
* (ARN) format.
*/
public void setAddIamRoles(java.util.Collection addIamRoles) {
if (addIamRoles == null) {
this.addIamRoles = null;
return;
}
this.addIamRoles = new com.amazonaws.internal.SdkInternalList(addIamRoles);
}
/**
*
* Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name (ARN)
* format.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setAddIamRoles(java.util.Collection)} or {@link #withAddIamRoles(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param addIamRoles
* Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name
* (ARN) format.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyClusterIamRolesRequest withAddIamRoles(String... addIamRoles) {
if (this.addIamRoles == null) {
setAddIamRoles(new com.amazonaws.internal.SdkInternalList(addIamRoles.length));
}
for (String ele : addIamRoles) {
this.addIamRoles.add(ele);
}
return this;
}
/**
*
* Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name (ARN)
* format.
*
*
* @param addIamRoles
* Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name
* (ARN) format.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyClusterIamRolesRequest withAddIamRoles(java.util.Collection addIamRoles) {
setAddIamRoles(addIamRoles);
return this;
}
/**
*
* Zero or more IAM roles in ARN format to disassociate from the cluster.
*
*
* @return Zero or more IAM roles in ARN format to disassociate from the cluster.
*/
public java.util.List getRemoveIamRoles() {
if (removeIamRoles == null) {
removeIamRoles = new com.amazonaws.internal.SdkInternalList();
}
return removeIamRoles;
}
/**
*
* Zero or more IAM roles in ARN format to disassociate from the cluster.
*
*
* @param removeIamRoles
* Zero or more IAM roles in ARN format to disassociate from the cluster.
*/
public void setRemoveIamRoles(java.util.Collection removeIamRoles) {
if (removeIamRoles == null) {
this.removeIamRoles = null;
return;
}
this.removeIamRoles = new com.amazonaws.internal.SdkInternalList(removeIamRoles);
}
/**
*
* Zero or more IAM roles in ARN format to disassociate from the cluster.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setRemoveIamRoles(java.util.Collection)} or {@link #withRemoveIamRoles(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param removeIamRoles
* Zero or more IAM roles in ARN format to disassociate from the cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyClusterIamRolesRequest withRemoveIamRoles(String... removeIamRoles) {
if (this.removeIamRoles == null) {
setRemoveIamRoles(new com.amazonaws.internal.SdkInternalList(removeIamRoles.length));
}
for (String ele : removeIamRoles) {
this.removeIamRoles.add(ele);
}
return this;
}
/**
*
* Zero or more IAM roles in ARN format to disassociate from the cluster.
*
*
* @param removeIamRoles
* Zero or more IAM roles in ARN format to disassociate from the cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyClusterIamRolesRequest withRemoveIamRoles(java.util.Collection removeIamRoles) {
setRemoveIamRoles(removeIamRoles);
return this;
}
/**
*
* The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was last
* modified.
*
*
* @param defaultIamRoleArn
* The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster
* was last modified.
*/
public void setDefaultIamRoleArn(String defaultIamRoleArn) {
this.defaultIamRoleArn = defaultIamRoleArn;
}
/**
*
* The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was last
* modified.
*
*
* @return The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster
* was last modified.
*/
public String getDefaultIamRoleArn() {
return this.defaultIamRoleArn;
}
/**
*
* The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was last
* modified.
*
*
* @param defaultIamRoleArn
* The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster
* was last modified.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyClusterIamRolesRequest withDefaultIamRoleArn(String defaultIamRoleArn) {
setDefaultIamRoleArn(defaultIamRoleArn);
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 (getClusterIdentifier() != null)
sb.append("ClusterIdentifier: ").append(getClusterIdentifier()).append(",");
if (getAddIamRoles() != null)
sb.append("AddIamRoles: ").append(getAddIamRoles()).append(",");
if (getRemoveIamRoles() != null)
sb.append("RemoveIamRoles: ").append(getRemoveIamRoles()).append(",");
if (getDefaultIamRoleArn() != null)
sb.append("DefaultIamRoleArn: ").append(getDefaultIamRoleArn());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ModifyClusterIamRolesRequest == false)
return false;
ModifyClusterIamRolesRequest other = (ModifyClusterIamRolesRequest) obj;
if (other.getClusterIdentifier() == null ^ this.getClusterIdentifier() == null)
return false;
if (other.getClusterIdentifier() != null && other.getClusterIdentifier().equals(this.getClusterIdentifier()) == false)
return false;
if (other.getAddIamRoles() == null ^ this.getAddIamRoles() == null)
return false;
if (other.getAddIamRoles() != null && other.getAddIamRoles().equals(this.getAddIamRoles()) == false)
return false;
if (other.getRemoveIamRoles() == null ^ this.getRemoveIamRoles() == null)
return false;
if (other.getRemoveIamRoles() != null && other.getRemoveIamRoles().equals(this.getRemoveIamRoles()) == false)
return false;
if (other.getDefaultIamRoleArn() == null ^ this.getDefaultIamRoleArn() == null)
return false;
if (other.getDefaultIamRoleArn() != null && other.getDefaultIamRoleArn().equals(this.getDefaultIamRoleArn()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getClusterIdentifier() == null) ? 0 : getClusterIdentifier().hashCode());
hashCode = prime * hashCode + ((getAddIamRoles() == null) ? 0 : getAddIamRoles().hashCode());
hashCode = prime * hashCode + ((getRemoveIamRoles() == null) ? 0 : getRemoveIamRoles().hashCode());
hashCode = prime * hashCode + ((getDefaultIamRoleArn() == null) ? 0 : getDefaultIamRoleArn().hashCode());
return hashCode;
}
@Override
public ModifyClusterIamRolesRequest clone() {
return (ModifyClusterIamRolesRequest) super.clone();
}
}