Struct rusoto_ec2::ReportInstanceStatusRequest [] [src]

pub struct ReportInstanceStatusRequest {
    pub description: Option<String>,
    pub dry_run: Option<bool>,
    pub end_time: Option<String>,
    pub instances: Vec<String>,
    pub reason_codes: Vec<String>,
    pub start_time: Option<String>,
    pub status: String,
}

Contains the parameters for ReportInstanceStatus.

Fields

Descriptive text about the health state of your instance.

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.

The time at which the reported instance health state ended.

One or more instances.

One or more reason codes that describes 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 which I believe are network related.

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

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

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

  • other: [explain using the description parameter]

The time at which the reported instance health state began.

The status of all instances listed.

Trait Implementations

impl Default for ReportInstanceStatusRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for ReportInstanceStatusRequest
[src]

Formats the value using the given formatter.

impl Clone for ReportInstanceStatusRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more