Class: Aws::EMR::Types::ManagedScalingPolicy

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

Overview

Managed scaling policy for an Amazon EMR cluster. The policy specifies the limits for resources that can be added or terminated from a cluster. The policy only applies to the core and task nodes. The master node cannot be scaled after initial configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#compute_limitsTypes::ComputeLimits

The Amazon EC2 unit limits for a managed scaling policy. The managed scaling activity of a cluster is not allowed to go above or below these limits. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration.



4492
4493
4494
4495
4496
4497
4498
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4492

class ManagedScalingPolicy < Struct.new(
  :compute_limits,
  :utilization_performance_index,
  :scaling_strategy)
  SENSITIVE = []
  include Aws::Structure
end

#scaling_strategyString

Determines whether a custom scaling utilization performance index can be set. Possible values include ADVANCED or DEFAULT.

Returns:

  • (String)


4492
4493
4494
4495
4496
4497
4498
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4492

class ManagedScalingPolicy < Struct.new(
  :compute_limits,
  :utilization_performance_index,
  :scaling_strategy)
  SENSITIVE = []
  include Aws::Structure
end

#utilization_performance_indexInteger

An integer value that represents an advanced scaling strategy. Setting a higher value optimizes for performance. Setting a lower value optimizes for resource conservation. Setting the value to 50 balances performance and resource conservation. Possible values are 1, 25, 50, 75, and 100.

Returns:

  • (Integer)


4492
4493
4494
4495
4496
4497
4498
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4492

class ManagedScalingPolicy < Struct.new(
  :compute_limits,
  :utilization_performance_index,
  :scaling_strategy)
  SENSITIVE = []
  include Aws::Structure
end