Interface CfnDBInstance.MasterUserSecretProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDBInstance.MasterUserSecretProperty.Jsii$Proxy
- Enclosing class:
CfnDBInstance
@Stability(Stable)
public static interface CfnDBInstance.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDBInstance.MasterUserSecretProperty
static final class
An implementation forCfnDBInstance.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
-