Show / Hide Table of Contents

Class ClusterScalingConfigurationGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ClusterScalingConfigurationGetArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Rds.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ClusterScalingConfigurationGetArgs : ResourceArgs

Constructors

View Source

ClusterScalingConfigurationGetArgs()

Declaration
public ClusterScalingConfigurationGetArgs()

Properties

View Source

AutoPause

Whether to enable automatic pause. A DB cluster can be paused only when it's idle (it has no connections). 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. Defaults to true.

Declaration
public Input<bool> AutoPause { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

MaxCapacity

The maximum capacity. The maximum capacity must be greater than or equal to the minimum capacity. Valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128, and 256. Defaults to 16.

Declaration
public Input<int> MaxCapacity { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

MinCapacity

The minimum capacity. The minimum capacity must be lesser than or equal to the maximum capacity. Valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128, and 256. Defaults to 2.

Declaration
public Input<int> MinCapacity { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

SecondsUntilAutoPause

The time, in seconds, before an Aurora DB cluster in serverless mode is paused. Valid values are 300 through 86400. Defaults to 300.

Declaration
public Input<int> SecondsUntilAutoPause { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

TimeoutAction

The action to take when the timeout is reached. Valid values: ForceApplyCapacityChange, RollbackCapacityChange. Defaults to RollbackCapacityChange. See documentation.

Declaration
public Input<string> TimeoutAction { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.