Show / Hide Table of Contents

Class CfnDBInstance.DBInstanceRoleProperty

Information about an AWS Identity and Access Management (IAM) role that is associated with a DB instance.

Inheritance
object
CfnDBInstance.DBInstanceRoleProperty
Implements
CfnDBInstance.IDBInstanceRoleProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBInstance.DBInstanceRoleProperty : CfnDBInstance.IDBInstanceRoleProperty
Syntax (vb)
Public Class CfnDBInstance.DBInstanceRoleProperty Implements CfnDBInstance.IDBInstanceRoleProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancerole.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.RDS;

             var dBInstanceRoleProperty = new DBInstanceRoleProperty {
                 FeatureName = "featureName",
                 RoleArn = "roleArn"
             };

Synopsis

Constructors

DBInstanceRoleProperty()

Information about an AWS Identity and Access Management (IAM) role that is associated with a DB instance.

Properties

FeatureName

The name of the feature associated with the AWS Identity and Access Management (IAM) role.

RoleArn

The Amazon Resource Name (ARN) of the IAM role that is associated with the DB instance.

Constructors

DBInstanceRoleProperty()

Information about an AWS Identity and Access Management (IAM) role that is associated with a DB instance.

public DBInstanceRoleProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancerole.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.RDS;

             var dBInstanceRoleProperty = new DBInstanceRoleProperty {
                 FeatureName = "featureName",
                 RoleArn = "roleArn"
             };

Properties

FeatureName

The name of the feature associated with the AWS Identity and Access Management (IAM) role.

public string FeatureName { get; set; }
Property Value

string

Remarks

IAM roles that are associated with a DB instance grant permission for the DB instance to access other AWS services on your behalf. For the list of supported feature names, see the SupportedFeatureNames description in DBEngineVersion in the Amazon RDS API Reference .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancerole.html#cfn-rds-dbinstance-dbinstancerole-featurename

RoleArn

The Amazon Resource Name (ARN) of the IAM role that is associated with the DB instance.

public string RoleArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancerole.html#cfn-rds-dbinstance-dbinstancerole-rolearn

Implements

CfnDBInstance.IDBInstanceRoleProperty
Back to top Generated by DocFX