Interface RotationSingleUserOptions
- All Superinterfaces:
CommonRotationUserOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RotationSingleUserOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-05T03:43:50.149Z")
@Stability(Stable)
public interface RotationSingleUserOptions
extends software.amazon.jsii.JsiiSerializable, CommonRotationUserOptions
Options to add the multi user rotation.
Example:
DatabaseInstance instance; SecurityGroup mySecurityGroup; instance.addRotationSingleUser(RotationSingleUserOptions.builder() .automaticallyAfter(Duration.days(7)) // defaults to 30 days .excludeCharacters("!@#$%^&*") // defaults to the set " %+~`#/// here*()|[]{}:;<>?!'/@\"\\" .securityGroup(mySecurityGroup) // defaults to an auto-created security group .rotateImmediatelyOnUpdate(false) .build());
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forRotationSingleUserOptions
static final class
An implementation forRotationSingleUserOptions
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.rds.CommonRotationUserOptions
getAutomaticallyAfter, getEndpoint, getExcludeCharacters, getRotateImmediatelyOnUpdate, getSecurityGroup, getVpcSubnets
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
builder
- Returns:
- a
RotationSingleUserOptions.Builder
ofRotationSingleUserOptions
-