Struct aws_sdk_xray::model::error_statistics::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ErrorStatistics
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn throttle_count(self, input: i64) -> Self
pub fn throttle_count(self, input: i64) -> Self
The number of requests that failed with a 419 throttling status code.
sourcepub fn set_throttle_count(self, input: Option<i64>) -> Self
pub fn set_throttle_count(self, input: Option<i64>) -> Self
The number of requests that failed with a 419 throttling status code.
sourcepub fn other_count(self, input: i64) -> Self
pub fn other_count(self, input: i64) -> Self
The number of requests that failed with untracked 4xx Client Error status codes.
sourcepub fn set_other_count(self, input: Option<i64>) -> Self
pub fn set_other_count(self, input: Option<i64>) -> Self
The number of requests that failed with untracked 4xx Client Error status codes.
sourcepub fn total_count(self, input: i64) -> Self
pub fn total_count(self, input: i64) -> Self
The total number of requests that failed with a 4xx Client Error status code.
sourcepub fn set_total_count(self, input: Option<i64>) -> Self
pub fn set_total_count(self, input: Option<i64>) -> Self
The total number of requests that failed with a 4xx Client Error status code.
sourcepub fn build(self) -> ErrorStatistics
pub fn build(self) -> ErrorStatistics
Consumes the builder and constructs a ErrorStatistics
.