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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDBCluster.DBClusterRoleProperty
static final class
An implementation forCfnDBCluster.DBClusterRoleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRoleArn
The Amazon Resource Name (ARN) of the IAM role that is associated with the DB cluster.- See Also:
-
getFeatureName
The name of the feature associated with the Amazon Identity and Access Management (IAM) role.For the list of supported feature names, see DescribeDBEngineVersions .
- See Also:
-
builder
-