Class AutoScalingSettingsDescription
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Represents the auto scaling settings for a global table or global secondary index.
public class AutoScalingSettingsDescription
- Inheritance
-
AutoScalingSettingsDescription
- Inherited Members
Constructors
AutoScalingSettingsDescription()
public AutoScalingSettingsDescription()
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 the 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
ScalingPolicies
Gets and sets the property ScalingPolicies.
Information about the scaling policies.
public List<AutoScalingPolicyDescription> ScalingPolicies { get; set; }