[][src]Struct rusoto_waf_regional::SampledHTTPRequest

pub struct SampledHTTPRequest {
    pub action: Option<String>,
    pub request: HTTPRequest,
    pub rule_within_rule_group: Option<String>,
    pub timestamp: Option<f64>,
    pub weight: i64,
}

The response from a GetSampledRequests request includes a SampledHTTPRequests complex type that appears as SampledRequests in the response syntax. SampledHTTPRequests contains one SampledHTTPRequest object for each web request that is returned by GetSampledRequests.

Fields

The action for the Rule that the request matched: ALLOW, BLOCK, or COUNT.

A complex type that contains detailed information about the request.

This value is returned if the GetSampledRequests request specifies the ID of a RuleGroup rather than the ID of an individual rule. RuleWithinRuleGroup is the rule within the specified RuleGroup that matched the request listed in the response.

The time at which AWS WAF received the request from your AWS resource, in Unix time format (in seconds).

A value that indicates how one result in the response relates proportionally to other results in the response. A result that has a weight of 2 represents roughly twice as many CloudFront web requests as a result that has a weight of 1.

Trait Implementations

impl Clone for SampledHTTPRequest
[src]

Performs copy-assignment from source. Read more

impl Default for SampledHTTPRequest
[src]

impl PartialEq<SampledHTTPRequest> for SampledHTTPRequest
[src]

impl Debug for SampledHTTPRequest
[src]

impl<'de> Deserialize<'de> for SampledHTTPRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T