/* * 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.rds.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 AddRoleToDBInstanceRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The name of the DB instance to associate the IAM role with. *
*/ private String dBInstanceIdentifier; /** *
* The Amazon Resource Name (ARN) of the IAM role to associate with the DB instance, for example
* arn:aws:iam::123456789012:role/AccessRole
.
*
* The name of the feature for the DB instance that the IAM role is to be associated with. For information about * supported feature names, see DBEngineVersion. *
*/ private String featureName; /** ** The name of the DB instance to associate the IAM role with. *
* * @param dBInstanceIdentifier * The name of the DB instance to associate the IAM role with. */ public void setDBInstanceIdentifier(String dBInstanceIdentifier) { this.dBInstanceIdentifier = dBInstanceIdentifier; } /** ** The name of the DB instance to associate the IAM role with. *
* * @return The name of the DB instance to associate the IAM role with. */ public String getDBInstanceIdentifier() { return this.dBInstanceIdentifier; } /** ** The name of the DB instance to associate the IAM role with. *
* * @param dBInstanceIdentifier * The name of the DB instance to associate the IAM role with. * @return Returns a reference to this object so that method calls can be chained together. */ public AddRoleToDBInstanceRequest withDBInstanceIdentifier(String dBInstanceIdentifier) { setDBInstanceIdentifier(dBInstanceIdentifier); return this; } /** *
* The Amazon Resource Name (ARN) of the IAM role to associate with the DB instance, for example
* arn:aws:iam::123456789012:role/AccessRole
.
*
arn:aws:iam::123456789012:role/AccessRole
.
*/
public void setRoleArn(String roleArn) {
this.roleArn = roleArn;
}
/**
*
* The Amazon Resource Name (ARN) of the IAM role to associate with the DB instance, for example
* arn:aws:iam::123456789012:role/AccessRole
.
*
arn:aws:iam::123456789012:role/AccessRole
.
*/
public String getRoleArn() {
return this.roleArn;
}
/**
*
* The Amazon Resource Name (ARN) of the IAM role to associate with the DB instance, for example
* arn:aws:iam::123456789012:role/AccessRole
.
*
arn:aws:iam::123456789012:role/AccessRole
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AddRoleToDBInstanceRequest withRoleArn(String roleArn) {
setRoleArn(roleArn);
return this;
}
/**
* * The name of the feature for the DB instance that the IAM role is to be associated with. For information about * supported feature names, see DBEngineVersion. *
* * @param featureName * The name of the feature for the DB instance that the IAM role is to be associated with. For information * about supported feature names, see DBEngineVersion. */ public void setFeatureName(String featureName) { this.featureName = featureName; } /** ** The name of the feature for the DB instance that the IAM role is to be associated with. For information about * supported feature names, see DBEngineVersion. *
* * @return The name of the feature for the DB instance that the IAM role is to be associated with. For information * about supported feature names, see DBEngineVersion. */ public String getFeatureName() { return this.featureName; } /** ** The name of the feature for the DB instance that the IAM role is to be associated with. For information about * supported feature names, see DBEngineVersion. *
* * @param featureName * The name of the feature for the DB instance that the IAM role is to be associated with. For information * about supported feature names, see DBEngineVersion. * @return Returns a reference to this object so that method calls can be chained together. */ public AddRoleToDBInstanceRequest withFeatureName(String featureName) { setFeatureName(featureName); 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 (getDBInstanceIdentifier() != null) sb.append("DBInstanceIdentifier: ").append(getDBInstanceIdentifier()).append(","); if (getRoleArn() != null) sb.append("RoleArn: ").append(getRoleArn()).append(","); if (getFeatureName() != null) sb.append("FeatureName: ").append(getFeatureName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AddRoleToDBInstanceRequest == false) return false; AddRoleToDBInstanceRequest other = (AddRoleToDBInstanceRequest) obj; if (other.getDBInstanceIdentifier() == null ^ this.getDBInstanceIdentifier() == null) return false; if (other.getDBInstanceIdentifier() != null && other.getDBInstanceIdentifier().equals(this.getDBInstanceIdentifier()) == false) return false; if (other.getRoleArn() == null ^ this.getRoleArn() == null) return false; if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == false) return false; if (other.getFeatureName() == null ^ this.getFeatureName() == null) return false; if (other.getFeatureName() != null && other.getFeatureName().equals(this.getFeatureName()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDBInstanceIdentifier() == null) ? 0 : getDBInstanceIdentifier().hashCode()); hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode()); hashCode = prime * hashCode + ((getFeatureName() == null) ? 0 : getFeatureName().hashCode()); return hashCode; } @Override public AddRoleToDBInstanceRequest clone() { return (AddRoleToDBInstanceRequest) super.clone(); } }