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());
 
  • 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