Method: Fog::AWS::AutoScaling::Group#ready?

Defined in:
lib/fog/aws/models/auto_scaling/group.rb

#ready?Boolean

Returns:

  • (Boolean)
[View source]

101
102
103
104
105
106
# File 'lib/fog/aws/models/auto_scaling/group.rb', line 101

def ready?
  # Is this useful?
  #instances_in_service.length == desired_capacity
  #instances_in_service.length >= min_size
  true
end