Class CfnDBCluster.DBClusterRoleProperty
Describes an Amazon Identity and Access Management (IAM) role that is associated with a DB cluster.
Implements
Inherited Members
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
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
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
Remarks
For the list of supported feature names, see DescribeDBEngineVersions .
RoleArn
The Amazon Resource Name (ARN) of the IAM role that is associated with the DB cluster.
public string RoleArn { get; set; }