interface DBClusterRoleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnDBClusterPropsMixin.DBClusterRoleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnDBClusterPropsMixin_DBClusterRoleProperty |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnDBClusterPropsMixin.DBClusterRoleProperty |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnDBClusterPropsMixin.DBClusterRoleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnDBClusterPropsMixin » DBClusterRoleProperty |
Describes an AWS 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 { mixins as rds_mixins } from '@aws-cdk/mixins-preview/aws-rds';
const dBClusterRoleProperty: rds_mixins.CfnDBClusterPropsMixin.DBClusterRoleProperty = {
featureName: 'featureName',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| feature | string | The name of the feature associated with the AWS Identity and Access Management (IAM) role. |
| role | string | 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 AWS Identity and Access Management (IAM) role.
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 .
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role that is associated with the DB cluster.

.NET
Go
Java
Python
TypeScript