Interface CfnDBCluster.DBClusterRoleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDBCluster.DBClusterRoleProperty.Jsii$Proxy
Enclosing class:
CfnDBCluster

@Stability(Stable) public static interface CfnDBCluster.DBClusterRoleProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.neptune.*;
 DBClusterRoleProperty dBClusterRoleProperty = DBClusterRoleProperty.builder()
         .roleArn("roleArn")
         // the properties below are optional
         .featureName("featureName")
         .build();