You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#codeInteger

The state of the instance as a 16-bit unsigned integer.

The high byte is all of the bits between 28 and (216)-1, which equals decimal values between 256 and 65,535. These numerical values are used for internal purposes and should be ignored.

The low byte is all of the bits between 20 and (28)-1, which equals decimal values between 0 and 255.

The valid values for instance-state-code will all be in the range of the low byte and they are:

  • 0: pending

  • 16: running

  • 32: shutting-down

  • 48: terminated

  • 64: stopping

  • 80: stopped

You can ignore the high byte value by zeroing out all of the bits above 28 or 256 in decimal.

Returns:

  • (Integer)

    The state of the instance as a 16-bit unsigned integer.

#nameString

The current state of the instance.

Possible values:

  • pending
  • running
  • shutting-down
  • terminated
  • stopping
  • stopped

Returns:

  • (String)

    The current state of the instance.