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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDBCluster.DBClusterRolePropertystatic final classAn implementation forCfnDBCluster.DBClusterRoleProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getRoleArnThe Amazon Resource Name (ARN) of the IAM role that is associated with the DB cluster.
- 
getFeatureNameThe name of the feature associated with the Amazon Identity and Access Management (IAM) role.For the list of supported feature names, see DescribeDBEngineVersions . 
- 
builder
 
-