Report Instance Status
ec2_report_instance_status | R Documentation |
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 describe_instance_status
, use
report_instance_status
to report your experience with the instance.
Amazon EC2 collects this information to improve the accuracy of status
checks.
Use of this action does not change the value returned by
describe_instance_status
.
Usage¶
ec2_report_instance_status(DryRun, Instances, Status, StartTime,
EndTime, ReasonCodes, Description)
Arguments¶
DryRun |
Checks whether you have the required permissions for the
operation, without actually making the request, and provides an error
response. If you have the required permissions, the error response is
|
Instances |
[required] The instances. |
Status |
[required] The status of all instances listed. |
StartTime |
The time at which the reported instance health state began. |
EndTime |
The time at which the reported instance health state ended. |
ReasonCodes |
[required] The reason codes that describe the health state of your instance.
|
Description |
Descriptive text about the health state of your instance. |
Value¶
An empty list.
Request syntax¶
svc$report_instance_status(
DryRun = TRUE|FALSE,
Instances = list(
"string"
),
Status = "ok"|"impaired",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
ReasonCodes = list(
"instance-stuck-in-state"|"unresponsive"|"not-accepting-credentials"|"password-not-available"|"performance-network"|"performance-instance-store"|"performance-ebs-volume"|"performance-other"|"other"
),
Description = "string"
)