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: StringThe 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§
Source§impl Clone for GetProtectionStatusRequest
impl Clone for GetProtectionStatusRequest
Source§fn clone(&self) -> GetProtectionStatusRequest
fn clone(&self) -> GetProtectionStatusRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more