interface DBClusterRoleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Neptune.CfnDBClusterPropsMixin.DBClusterRoleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsneptune#CfnDBClusterPropsMixin_DBClusterRoleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.neptune.CfnDBClusterPropsMixin.DBClusterRoleProperty |
Python | aws_cdk.cfn_property_mixins.aws_neptune.CfnDBClusterPropsMixin.DBClusterRoleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_neptune » CfnDBClusterPropsMixin » DBClusterRoleProperty |
Describes an Amazon Identity and Access Management (IAM) role that is associated with a DB cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_neptune as neptune } from '@aws-cdk/cfn-property-mixins';
const dBClusterRoleProperty: neptune.CfnDBClusterPropsMixin.DBClusterRoleProperty = {
featureName: 'featureName',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| feature | string | The name of the feature associated with the Amazon Identity and Access Management (IAM) role. |
| role | string | IRole | The Amazon Resource Name (ARN) of the IAM role that is associated with the DB cluster. |
featureName?
Type:
string
(optional)
The name of the feature associated with the Amazon Identity and Access Management (IAM) role.
For the list of supported feature names, see DescribeDBEngineVersions .
roleArn?
Type:
string | IRole
(optional)
The Amazon Resource Name (ARN) of the IAM role that is associated with the DB cluster.

.NET
Go
Java
Python
TypeScript