Interface ServerlessScalingOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ServerlessScalingOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:49.267Z") @Stability(Stable) public interface ServerlessScalingOptions extends software.amazon.jsii.JsiiSerializable
Options for configuring scaling on an Aurora Serverless cluster.

Example:

 Vpc vpc;
 ServerlessCluster cluster = ServerlessCluster.Builder.create(this, "AnotherCluster")
         .engine(DatabaseClusterEngine.AURORA_POSTGRESQL)
         .parameterGroup(ParameterGroup.fromParameterGroupName(this, "ParameterGroup", "default.aurora-postgresql10"))
         .vpc(vpc)
         .scaling(ServerlessScalingOptions.builder()
                 .autoPause(Duration.minutes(10)) // default is to pause after 5 minutes of idle time
                 .minCapacity(AuroraCapacityUnit.ACU_8) // default is 2 Aurora capacity units (ACUs)
                 .maxCapacity(AuroraCapacityUnit.ACU_32)
                 .build())
         .build();
 
  • Method Details

    • getAutoPause

      @Stability(Stable) @Nullable default Duration getAutoPause()
      The time before an Aurora Serverless database cluster is paused.

      A database cluster can be paused only when it is idle (it has no connections). Auto pause time must be between 5 minutes and 1 day.

      If a DB cluster is paused for more than seven days, the DB cluster might be backed up with a snapshot. In this case, the DB cluster is restored when there is a request to connect to it.

      Set to 0 to disable

      Default: - automatic pause enabled after 5 minutes

    • getMaxCapacity

      @Stability(Stable) @Nullable default AuroraCapacityUnit getMaxCapacity()
      The maximum capacity for an Aurora Serverless database cluster.

      Default: - determined by Aurora based on database engine

    • getMinCapacity

      @Stability(Stable) @Nullable default AuroraCapacityUnit getMinCapacity()
      The minimum capacity for an Aurora Serverless database cluster.

      Default: - determined by Aurora based on database engine

    • builder

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