Struct rusoto_waf_regional::GetSampledRequestsResponse[][src]

pub struct GetSampledRequestsResponse {
    pub population_size: Option<i64>,
    pub sampled_requests: Option<Vec<SampledHTTPRequest>>,
    pub time_window: Option<TimeWindow>,
}

Fields

The total number of requests from which GetSampledRequests got a sample of MaxItems requests. If PopulationSize is less than MaxItems, the sample includes every request that your AWS resource received during the specified time range.

A complex type that contains detailed information about each of the requests in the sample.

Usually, TimeWindow is the time range that you specified in the GetSampledRequests request. However, if your AWS resource received more than 5,000 requests during the time range that you specified in the request, GetSampledRequests returns the time range for the first 5,000 requests.

Trait Implementations

impl Default for GetSampledRequestsResponse
[src]

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

impl Debug for GetSampledRequestsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetSampledRequestsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetSampledRequestsResponse
[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