Interface RotationSingleUserOptions
- All Superinterfaces:
CommonRotationUserOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RotationSingleUserOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:49.258Z")
@Stability(Stable)
public interface RotationSingleUserOptions
extends software.amazon.jsii.JsiiSerializable, CommonRotationUserOptions
Options to add the multi user rotation.
Example:
import software.amazon.awscdk.core.*;
DatabaseInstance instance;
instance.addRotationSingleUser(RotationSingleUserOptions.builder()
.automaticallyAfter(Duration.days(7)) // defaults to 30 days
.excludeCharacters("!@#$%^&*")
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forRotationSingleUserOptionsstatic final classAn implementation forRotationSingleUserOptions -
Method Summary
Static MethodsMethods inherited from interface software.amazon.awscdk.services.rds.CommonRotationUserOptions
getAutomaticallyAfter, getEndpoint, getExcludeCharacters, getVpcSubnetsMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
builder
- Returns:
- a
RotationSingleUserOptions.BuilderofRotationSingleUserOptions
-