Class AutoScalingSettingsUpdate
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Represents the auto scaling settings to be modified for a global table or global secondary index.
public class AutoScalingSettingsUpdate
- Inheritance
-
AutoScalingSettingsUpdate
- Inherited Members
Constructors
AutoScalingSettingsUpdate()
public AutoScalingSettingsUpdate()
Properties
AutoScalingDisabled
Gets and sets the property AutoScalingDisabled.
Disabled auto scaling for this global table or global secondary index.
public bool AutoScalingDisabled { get; set; }
Property Value
AutoScalingRoleArn
Gets and sets the property AutoScalingRoleArn.
Role ARN used for configuring auto scaling policy.
public string AutoScalingRoleArn { get; set; }
Property Value
MaximumUnits
Gets and sets the property MaximumUnits.
The maximum capacity units that a global table or global secondary index should be scaled up to.
public long MaximumUnits { get; set; }
Property Value
MinimumUnits
Gets and sets the property MinimumUnits.
The minimum capacity units that a global table or global secondary index should be scaled down to.
public long MinimumUnits { get; set; }
Property Value
ScalingPolicyUpdate
Gets and sets the property ScalingPolicyUpdate.
The scaling policy to apply for scaling target global table or global secondary index capacity units.
public AutoScalingPolicyUpdate ScalingPolicyUpdate { get; set; }