Interface RotationMultiUserOptions

All Superinterfaces:
CommonRotationUserOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
RotationMultiUserOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-02T15:58:32.347Z") @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());
 
  • Method Details

    • getSecret

      @Stability(Stable) @NotNull ISecret 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

      @Stability(Stable) static RotationMultiUserOptions.Builder builder()
      Returns:
      a RotationMultiUserOptions.Builder of RotationMultiUserOptions