Struct aws_sdk_elasticbeanstalk::model::StatusCodes
source · [−]#[non_exhaustive]pub struct StatusCodes {
pub status2xx: Option<i32>,
pub status3xx: Option<i32>,
pub status4xx: Option<i32>,
pub status5xx: Option<i32>,
}
Expand description
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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.status2xx: Option<i32>
The percentage of requests over the last 10 seconds that resulted in a 2xx (200, 201, etc.) status code.
status3xx: Option<i32>
The percentage of requests over the last 10 seconds that resulted in a 3xx (300, 301, etc.) status code.
status4xx: Option<i32>
The percentage of requests over the last 10 seconds that resulted in a 4xx (400, 401, etc.) status code.
status5xx: Option<i32>
The percentage of requests over the last 10 seconds that resulted in a 5xx (500, 501, etc.) status code.
Implementations
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.
Creates a new builder-style object to manufacture StatusCodes
Trait Implementations
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 RefUnwindSafe for StatusCodes
impl Send for StatusCodes
impl Sync for StatusCodes
impl Unpin for StatusCodes
impl UnwindSafe for StatusCodes
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more