[][src]Struct rusoto_fms::GetProtectionStatusRequest

pub struct GetProtectionStatusRequest {
    pub end_time: Option<f64>,
    pub max_results: Option<i64>,
    pub member_account_id: Option<String>,
    pub next_token: Option<String>,
    pub policy_id: String,
    pub start_time: Option<f64>,
}

Fields

end_time: Option<f64>

The end of the time period to query for the attacks. This is a timestamp type. The request syntax listing indicates a number type because the default used by AWS Firewall Manager is Unix time in seconds. However, any valid timestamp format is allowed.

max_results: Option<i64>

Specifies the number of objects that you want AWS Firewall Manager to return for this request. If you have more objects than the number that you specify for MaxResults, the response includes a NextToken value that you can use to get another batch of objects.

member_account_id: Option<String>

The AWS account that is in scope of the policy that you want to get the details for.

next_token: Option<String>

If you specify a value for MaxResults and you have more objects than the number that you specify for MaxResults, AWS Firewall Manager returns a NextToken value in the response, which you can use to retrieve another group of objects. For the second and subsequent GetProtectionStatus requests, specify the value of NextToken from the previous response to get information about another batch of objects.

policy_id: String

The ID of the policy for which you want to get the attack information.

start_time: Option<f64>

The start of the time period to query for the attacks. This is a timestamp type. The request syntax listing indicates a number type because the default used by AWS Firewall Manager is Unix time in seconds. However, any valid timestamp format is allowed.

Trait Implementations

impl Clone for GetProtectionStatusRequest[src]

impl Debug for GetProtectionStatusRequest[src]

impl Default for GetProtectionStatusRequest[src]

impl PartialEq<GetProtectionStatusRequest> for GetProtectionStatusRequest[src]

impl Serialize for GetProtectionStatusRequest[src]

impl StructuralPartialEq for GetProtectionStatusRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.