paws.compute (version 0.1.0)

ec2_report_instance_status: Submits feedback about the status of an instance

Description

Submits feedback about the status of an instance. The instance must be in the running state. If your experience with the instance differs from the instance status returned by DescribeInstanceStatus, use ReportInstanceStatus to report your experience with the instance. Amazon EC2 collects this information to improve the accuracy of status checks.

Usage

ec2_report_instance_status(Description, DryRun, EndTime, Instances,
  ReasonCodes, StartTime, Status)

Arguments

Description

Descriptive text about the health state of your instance.

DryRun

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.

EndTime

The time at which the reported instance health state ended.

Instances

[required] One or more instances.

ReasonCodes

[required] One or more 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]

StartTime

The time at which the reported instance health state began.

Status

[required] The status of all instances listed.

Request syntax

svc$report_instance_status(
  Description = "string",
  DryRun = TRUE|FALSE,
  EndTime = as.POSIXct(
    "2015-01-01"
  ),
  Instances = list(
    "string"
  ),
  ReasonCodes = list(
    "instance-stuck-in-state"|"unresponsive"|"not-accepting-credentials"|"password-not-available"|"performance-network"|"performance-instance-store"|"performance-ebs-volume"|"performance-other"|"other"
  ),
  StartTime = as.POSIXct(
    "2015-01-01"
  ),
  Status = "ok"|"impaired"
)

Details

Use of this action does not change the value returned by DescribeInstanceStatus.