Interface RotationMultiUserOptions
- All Superinterfaces:
CommonRotationUserOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RotationMultiUserOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:49.256Z")
@Stability(Stable)
public interface RotationMultiUserOptions
extends software.amazon.jsii.JsiiSerializable, CommonRotationUserOptions
Options to add the multi user rotation.
Example:
DatabaseInstance instance; DatabaseSecret myImportedSecret; instance.addRotationMultiUser("MyUser", RotationMultiUserOptions.builder() .secret(myImportedSecret) .build());
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forRotationMultiUserOptions
static final class
An implementation forRotationMultiUserOptions
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.rds.CommonRotationUserOptions
getAutomaticallyAfter, getEndpoint, getExcludeCharacters, getVpcSubnets
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecret
The secret to rotate.It must be a JSON string with the following format:
{ "engine": <required: database engine>, "host": <required: instance host name>, "username": <required: username>, "password": <required: password>, "dbname": <optional: database name>, "port": <optional: if not specified, default port will be used>, "masterarn": <required: the arn of the master secret which will be used to create users/change passwords> }
-
builder
- Returns:
- a
RotationMultiUserOptions.Builder
ofRotationMultiUserOptions
-