Interface CfnDBCluster.MasterUserSecretProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDBCluster.MasterUserSecretProperty.Jsii$Proxy
- Enclosing class:
- CfnDBCluster
@Stability(Stable)
public static interface CfnDBCluster.MasterUserSecretProperty
extends software.amazon.jsii.JsiiSerializable
The
MasterUserSecret
return value specifies the secret managed by RDS in AWS Secrets Manager for the master user password.
For more information, see Password management with AWS Secrets Manager in the Amazon RDS User Guide and Password management with AWS Secrets Manager in the Amazon Aurora User Guide.
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.*; MasterUserSecretProperty masterUserSecretProperty = MasterUserSecretProperty.builder() .kmsKeyId("kmsKeyId") .secretArn("secretArn") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDBCluster.MasterUserSecretProperty
static final class
An implementation forCfnDBCluster.MasterUserSecretProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKeyId
The AWS KMS key identifier that is used to encrypt the secret. -
getSecretArn
The Amazon Resource Name (ARN) of the secret. -
builder
-