Show / Hide Table of Contents

Interface CfnDBCluster.IDBClusterRoleProperty

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

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDBCluster.IDBClusterRoleProperty
Syntax (vb)
Public Interface CfnDBCluster.IDBClusterRoleProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-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.RDS;

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

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

Synopsis

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 cluster.

Properties

FeatureName

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

string? FeatureName { get; }
Property Value

string

Remarks

IAM roles that are associated with a DB cluster grant permission for the DB cluster 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-dbcluster-dbclusterrole.html#cfn-rds-dbcluster-dbclusterrole-featurename

RoleArn

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

string RoleArn { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX