Struct rusoto_elasticbeanstalk::StatusCodes[][src]

pub struct StatusCodes {
    pub status_2xx: Option<i64>,
    pub status_3xx: Option<i64>,
    pub status_4xx: Option<i64>,
    pub status_5xx: Option<i64>,
}

Represents the percentage of requests over the last 10 seconds that resulted in each type of status code response. For more information, see Status Code Definitions.

Fields

The percentage of requests over the last 10 seconds that resulted in a 2xx (200, 201, etc.) status code.

The percentage of requests over the last 10 seconds that resulted in a 3xx (300, 301, etc.) status code.

The percentage of requests over the last 10 seconds that resulted in a 4xx (400, 401, etc.) status code.

The percentage of requests over the last 10 seconds that resulted in a 5xx (500, 501, etc.) status code.

Trait Implementations

impl Default for StatusCodes
[src]

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

impl Debug for StatusCodes
[src]

Formats the value using the given formatter. Read more

impl Clone for StatusCodes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StatusCodes
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for StatusCodes

impl Sync for StatusCodes