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

com.amazonaws.services.rds.model.RemoveRoleFromDBInstanceRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon RDS module holds the client classes that are used for communicating with Amazon Relational Database 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.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 RemoveRoleFromDBInstanceRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The name of the DB instance to disassociate the IAM role from. *

*/ private String dBInstanceIdentifier; /** *

* The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB instance, for example, * arn:aws:iam::123456789012:role/AccessRole. *

*/ private String roleArn; /** *

* The name of the feature for the DB instance that the IAM role is to be disassociated from. For information about * supported feature names, see DBEngineVersion. *

*/ private String featureName; /** *

* The name of the DB instance to disassociate the IAM role from. *

* * @param dBInstanceIdentifier * The name of the DB instance to disassociate the IAM role from. */ public void setDBInstanceIdentifier(String dBInstanceIdentifier) { this.dBInstanceIdentifier = dBInstanceIdentifier; } /** *

* The name of the DB instance to disassociate the IAM role from. *

* * @return The name of the DB instance to disassociate the IAM role from. */ public String getDBInstanceIdentifier() { return this.dBInstanceIdentifier; } /** *

* The name of the DB instance to disassociate the IAM role from. *

* * @param dBInstanceIdentifier * The name of the DB instance to disassociate the IAM role from. * @return Returns a reference to this object so that method calls can be chained together. */ public RemoveRoleFromDBInstanceRequest withDBInstanceIdentifier(String dBInstanceIdentifier) { setDBInstanceIdentifier(dBInstanceIdentifier); return this; } /** *

* The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB instance, for example, * arn:aws:iam::123456789012:role/AccessRole. *

* * @param roleArn * The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB instance, for example, * arn:aws:iam::123456789012:role/AccessRole. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** *

* The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB instance, for example, * arn:aws:iam::123456789012:role/AccessRole. *

* * @return The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB instance, for example, * arn:aws:iam::123456789012:role/AccessRole. */ public String getRoleArn() { return this.roleArn; } /** *

* The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB instance, for example, * arn:aws:iam::123456789012:role/AccessRole. *

* * @param roleArn * The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB instance, for example, * arn:aws:iam::123456789012:role/AccessRole. * @return Returns a reference to this object so that method calls can be chained together. */ public RemoveRoleFromDBInstanceRequest withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** *

* The name of the feature for the DB instance that the IAM role is to be disassociated from. 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 disassociated from. 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 disassociated from. 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 disassociated from. 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 disassociated from. 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 disassociated from. For information * about supported feature names, see DBEngineVersion. * @return Returns a reference to this object so that method calls can be chained together. */ public RemoveRoleFromDBInstanceRequest 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 RemoveRoleFromDBInstanceRequest == false) return false; RemoveRoleFromDBInstanceRequest other = (RemoveRoleFromDBInstanceRequest) 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 RemoveRoleFromDBInstanceRequest clone() { return (RemoveRoleFromDBInstanceRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy