class Amazonite::DynamoDB::AutoScalingSettingsUpdate

Overview

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

Included Modules

Defined in:

dynamodb/auto_scaling_settings_update.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_policy_update : AutoScalingPolicyUpdate | Nil = nil) #

[View source]
def self.new(*, __pull_for_json_serializable pull : JSON::PullParser) #

[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 auto scaling policy.


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

Role ARN used for configuring 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_policy_update : AutoScalingPolicyUpdate | Nil #

The scaling policy to apply for scaling target global table or global secondary index capacity units.


[View source]
def scaling_policy_update=(scaling_policy_update : AutoScalingPolicyUpdate | Nil) #

The scaling policy to apply for scaling target global table or global secondary index capacity units.


[View source]
def validate! : Nil #

[View source]