class Amazonite::DynamoDB::AutoScalingSettingsDescription

Overview

Represents the auto scaling settings for a global table or global secondary index.

Included Modules

Defined in:

dynamodb/auto_scaling_settings_description.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(minimum_units : Int64 | Nil = nil, maximum_units : Int64 | Nil = nil, auto_scaling_disabled : Bool | Nil = nil, auto_scaling_role_arn : String | Nil = nil, scaling_policies : Array(AutoScalingPolicyDescription) | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def auto_scaling_disabled : Bool | Nil #

Disabled auto scaling for this global table or global secondary index.


[View source]
def auto_scaling_disabled=(auto_scaling_disabled : Bool | Nil) #

Disabled auto scaling for this global table or global secondary index.


[View source]
def auto_scaling_role_arn : String | Nil #

Role ARN used for configuring the auto scaling policy.


[View source]
def auto_scaling_role_arn=(auto_scaling_role_arn : String | Nil) #

Role ARN used for configuring the auto scaling policy.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def maximum_units : Int64 | Nil #

The maximum capacity units that a global table or global secondary index should be scaled up to.


[View source]
def maximum_units=(maximum_units : Int64 | Nil) #

The maximum capacity units that a global table or global secondary index should be scaled up to.


[View source]
def minimum_units : Int64 | Nil #

The minimum capacity units that a global table or global secondary index should be scaled down to.


[View source]
def minimum_units=(minimum_units : Int64 | Nil) #

The minimum capacity units that a global table or global secondary index should be scaled down to.


[View source]
def scaling_policies : Array(AutoScalingPolicyDescription) | Nil #

Information about the scaling policies.


[View source]
def scaling_policies=(scaling_policies : Array(AutoScalingPolicyDescription) | Nil) #

Information about the scaling policies.


[View source]
def validate! : Nil #

[View source]