Class: Aws::DynamoDB::Types::AutoScalingSettingsUpdate

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_disabledBoolean

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

Returns:

  • (Boolean)


392
393
394
395
396
397
398
399
400
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 392

class AutoScalingSettingsUpdate < Struct.new(
  :minimum_units,
  :maximum_units,
  :auto_scaling_disabled,
  :auto_scaling_role_arn,
  :scaling_policy_update)
  SENSITIVE = []
  include Aws::Structure
end

#auto_scaling_role_arnString

Role ARN used for configuring auto scaling policy.

Returns:

  • (String)


392
393
394
395
396
397
398
399
400
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 392

class AutoScalingSettingsUpdate < Struct.new(
  :minimum_units,
  :maximum_units,
  :auto_scaling_disabled,
  :auto_scaling_role_arn,
  :scaling_policy_update)
  SENSITIVE = []
  include Aws::Structure
end

#maximum_unitsInteger

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

Returns:

  • (Integer)


392
393
394
395
396
397
398
399
400
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 392

class AutoScalingSettingsUpdate < Struct.new(
  :minimum_units,
  :maximum_units,
  :auto_scaling_disabled,
  :auto_scaling_role_arn,
  :scaling_policy_update)
  SENSITIVE = []
  include Aws::Structure
end

#minimum_unitsInteger

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

Returns:

  • (Integer)


392
393
394
395
396
397
398
399
400
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 392

class AutoScalingSettingsUpdate < Struct.new(
  :minimum_units,
  :maximum_units,
  :auto_scaling_disabled,
  :auto_scaling_role_arn,
  :scaling_policy_update)
  SENSITIVE = []
  include Aws::Structure
end

#scaling_policy_updateTypes::AutoScalingPolicyUpdate

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



392
393
394
395
396
397
398
399
400
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 392

class AutoScalingSettingsUpdate < Struct.new(
  :minimum_units,
  :maximum_units,
  :auto_scaling_disabled,
  :auto_scaling_role_arn,
  :scaling_policy_update)
  SENSITIVE = []
  include Aws::Structure
end