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

Class: Aws::EC2::Types::ReportInstanceStatusRequest

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

Overview

Note:

When passing ReportInstanceStatusRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  description: "String",
  dry_run: false,
  end_time: Time.now,
  instances: ["InstanceId"], # required
  reason_codes: ["instance-stuck-in-state"], # required, accepts instance-stuck-in-state, unresponsive, not-accepting-credentials, password-not-available, performance-network, performance-instance-store, performance-ebs-volume, performance-other, other
  start_time: Time.now,
  status: "ok", # required, accepts ok, impaired
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

Descriptive text about the health state of your instance.

Returns:

  • (String)

    Descriptive text about the health state of your instance.

#dry_runBoolean

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

Returns:

  • (Boolean)

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.

#end_timeTime

The time at which the reported instance health state ended.

Returns:

  • (Time)

    The time at which the reported instance health state ended.

#instancesArray<String>

The instances.

Returns:

  • (Array<String>)

    The instances.

#reason_codesArray<String>

The reason codes that describe the health state of your instance.

  • instance-stuck-in-state: My instance is stuck in a state.

  • unresponsive: My instance is unresponsive.

  • not-accepting-credentials: My instance is not accepting my credentials.

  • password-not-available: A password is not available for my instance.

  • performance-network: My instance is experiencing performance problems that I believe are network related.

  • performance-instance-store: My instance is experiencing performance problems that I believe are related to the instance stores.

  • performance-ebs-volume: My instance is experiencing performance problems that I believe are related to an EBS volume.

  • performance-other: My instance is experiencing performance problems.

  • other: [explain using the description parameter]

Returns:

  • (Array<String>)

    The reason codes that describe the health state of your instance.

#start_timeTime

The time at which the reported instance health state began.

Returns:

  • (Time)

    The time at which the reported instance health state began.

#statusString

The status of all instances listed.

Possible values:

  • ok
  • impaired

Returns:

  • (String)

    The status of all instances listed.