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 used for internal purposes and should be ignored.

  • ‘0`: `pending`

  • ‘16`: `running`

  • ‘32`: `shutting-down`

  • ‘48`: `terminated`

  • ‘64`: `stopping`

  • ‘80`: `stopped`

Returns:

  • (Integer)


22926
22927
22928
22929
22930
# File 'lib/aws-sdk-ec2/types.rb', line 22926

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

#nameString

The current state of the instance.

Returns:

  • (String)


22926
22927
22928
22929
22930
# File 'lib/aws-sdk-ec2/types.rb', line 22926

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