Class: Aws::EC2::Types::InstanceState

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Describes the current state of an instance.

Instance Attribute Summary collapse

Instance Attribute Details

#codeInteger

The low byte represents the state. The high byte is an opaque internal value and should be ignored.

  • ‘0`: `pending`

  • ‘16`: `running`

  • ‘32`: `shutting-down`

  • ‘48`: `terminated`

  • ‘64`: `stopping`

  • ‘80`: `stopped`

Returns:

  • (Integer)


15494
15495
15496
15497
15498
# File 'lib/aws-sdk-ec2/types.rb', line 15494

class InstanceState < Struct.new(
  :code,
  :name)
  include Aws::Structure
end

#nameString

The current state of the instance.

Returns:

  • (String)


15494
15495
15496
15497
15498
# File 'lib/aws-sdk-ec2/types.rb', line 15494

class InstanceState < Struct.new(
  :code,
  :name)
  include Aws::Structure
end