/* * Copyright 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. */ /* * Do not modify this file. This file is generated from the rds-2014-10-31.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.RDS.Model { /// <summary> /// Container for the parameters to the RemoveRoleFromDBCluster operation. /// Removes the asssociation of an Amazon Web Services Identity and Access Management /// (IAM) role from a DB cluster. /// /// /// <para> /// For more information on Amazon Aurora DB clusters, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html"> /// What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide</i>. /// </para> /// /// <para> /// For more information on Multi-AZ DB clusters, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html"> /// Multi-AZ DB cluster deployments</a> in the <i>Amazon RDS User Guide.</i> /// </para> /// </summary> public partial class RemoveRoleFromDBClusterRequest : AmazonRDSRequest { private string _dbClusterIdentifier; private string _featureName; private string _roleArn; /// <summary> /// Gets and sets the property DBClusterIdentifier. /// <para> /// The name of the DB cluster to disassociate the IAM role from. /// </para> /// </summary> [AWSProperty(Required=true)] public string DBClusterIdentifier { get { return this._dbClusterIdentifier; } set { this._dbClusterIdentifier = value; } } // Check to see if DBClusterIdentifier property is set internal bool IsSetDBClusterIdentifier() { return this._dbClusterIdentifier != null; } /// <summary> /// Gets and sets the property FeatureName. /// <para> /// The name of the feature for the DB cluster that the IAM role is to be disassociated /// from. For information about supported feature names, see <a>DBEngineVersion</a>. /// </para> /// </summary> public string FeatureName { get { return this._featureName; } set { this._featureName = value; } } // Check to see if FeatureName property is set internal bool IsSetFeatureName() { return this._featureName != null; } /// <summary> /// Gets and sets the property RoleArn. /// <para> /// The Amazon Resource Name (ARN) of the IAM role to disassociate from the Aurora DB /// cluster, for example <code>arn:aws:iam::123456789012:role/AuroraAccessRole</code>. /// </para> /// </summary> [AWSProperty(Required=true)] public string RoleArn { get { return this._roleArn; } set { this._roleArn = value; } } // Check to see if RoleArn property is set internal bool IsSetRoleArn() { return this._roleArn != null; } } }