pub struct GetWafFirewallVersionParams {
pub firewall_id: String,
pub firewall_version_number: i32,
pub include: Option<String>,
}
Expand description
struct for passing parameters to the method get_waf_firewall_version
Fields§
§firewall_id: String
Alphanumeric string identifying a WAF Firewall.
firewall_version_number: i32
Integer identifying a WAF firewall version.
include: Option<String>
Include relationships. Optional, comma-separated values. Permitted values: waf_firewall
and waf_active_rules
.
Trait Implementations§
source§impl Clone for GetWafFirewallVersionParams
impl Clone for GetWafFirewallVersionParams
source§fn clone(&self) -> GetWafFirewallVersionParams
fn clone(&self) -> GetWafFirewallVersionParams
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetWafFirewallVersionParams
impl Debug for GetWafFirewallVersionParams
source§impl Default for GetWafFirewallVersionParams
impl Default for GetWafFirewallVersionParams
source§fn default() -> GetWafFirewallVersionParams
fn default() -> GetWafFirewallVersionParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for GetWafFirewallVersionParams
impl Send for GetWafFirewallVersionParams
impl Sync for GetWafFirewallVersionParams
impl Unpin for GetWafFirewallVersionParams
impl UnwindSafe for GetWafFirewallVersionParams
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more