@Stability(value=Stable)
public static interface CfnDBCluster.DBClusterRoleProperty
extends software.amazon.jsii.JsiiSerializable
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.rds.*;
DBClusterRoleProperty dBClusterRoleProperty = DBClusterRoleProperty.builder()
.roleArn("roleArn")
// the properties below are optional
.featureName("featureName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDBCluster.DBClusterRoleProperty.Builder
A builder for
CfnDBCluster.DBClusterRoleProperty |
static class |
CfnDBCluster.DBClusterRoleProperty.Jsii$Proxy
An implementation for
CfnDBCluster.DBClusterRoleProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDBCluster.DBClusterRoleProperty.Builder |
builder() |
default String |
getFeatureName()
The name of the feature associated with the AWS Identity and Access Management (IAM) role.
|
String |
getRoleArn()
The Amazon Resource Name (ARN) of the IAM role that is associated with the DB cluster.
|
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @Nullable default String getFeatureName()
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 .
@Stability(value=Stable) static CfnDBCluster.DBClusterRoleProperty.Builder builder()
Copyright © 2022. All rights reserved.