Show / Hide Table of Contents

Class CfnDBCluster.DBClusterRoleProperty

Describes an Amazon Identity and Access Management (IAM) role that is associated with a DB cluster.

Inheritance
object
CfnDBCluster.DBClusterRoleProperty
Implements
CfnDBCluster.IDBClusterRoleProperty
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.Neptune
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBCluster.DBClusterRoleProperty : CfnDBCluster.IDBClusterRoleProperty
Syntax (vb)
Public Class CfnDBCluster.DBClusterRoleProperty Implements CfnDBCluster.IDBClusterRoleProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbcluster-dbclusterrole.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.Neptune;

             var dBClusterRoleProperty = new DBClusterRoleProperty {
                 RoleArn = "roleArn",

                 // the properties below are optional
                 FeatureName = "featureName"
             };

Synopsis

Constructors

DBClusterRoleProperty()

Describes an Amazon Identity and Access Management (IAM) role that is associated with a DB cluster.

Properties

FeatureName

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

RoleArn

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

Constructors

DBClusterRoleProperty()

Describes an Amazon Identity and Access Management (IAM) role that is associated with a DB cluster.

public DBClusterRoleProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbcluster-dbclusterrole.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.Neptune;

             var dBClusterRoleProperty = new DBClusterRoleProperty {
                 RoleArn = "roleArn",

                 // the properties below are optional
                 FeatureName = "featureName"
             };

Properties

FeatureName

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

public string? FeatureName { get; set; }
Property Value

string

Remarks

For the list of supported feature names, see DescribeDBEngineVersions .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbcluster-dbclusterrole.html#cfn-neptune-dbcluster-dbclusterrole-featurename

RoleArn

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

public string RoleArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbcluster-dbclusterrole.html#cfn-neptune-dbcluster-dbclusterrole-rolearn

Implements

CfnDBCluster.IDBClusterRoleProperty
Back to top Generated by DocFX