pub struct UpdateFirewallPolicyRequest {Show 20 fields
pub name: Option<String>,
pub action: Option<FirewallAction>,
pub allow_return_traffic: Option<bool>,
pub enabled: Option<bool>,
pub description: Option<String>,
pub ip_version: Option<String>,
pub connection_states: Option<Vec<String>>,
pub source_filter: Option<TrafficFilterSpec>,
pub destination_filter: Option<TrafficFilterSpec>,
pub logging_enabled: Option<bool>,
pub src_network: Option<Vec<String>>,
pub src_ip: Option<Vec<String>>,
pub src_port: Option<Vec<String>>,
pub dst_network: Option<Vec<String>>,
pub dst_ip: Option<Vec<String>>,
pub dst_port: Option<Vec<String>>,
pub src_port_group: Option<String>,
pub dst_port_group: Option<String>,
pub src_address_group: Option<String>,
pub dst_address_group: Option<String>,
}Fields§
§name: Option<String>§action: Option<FirewallAction>§allow_return_traffic: Option<bool>§enabled: Option<bool>§description: Option<String>§ip_version: Option<String>§connection_states: Option<Vec<String>>§source_filter: Option<TrafficFilterSpec>§destination_filter: Option<TrafficFilterSpec>§logging_enabled: Option<bool>§src_network: Option<Vec<String>>§src_ip: Option<Vec<String>>§src_port: Option<Vec<String>>§dst_network: Option<Vec<String>>§dst_ip: Option<Vec<String>>§dst_port: Option<Vec<String>>§src_port_group: Option<String>§dst_port_group: Option<String>§src_address_group: Option<String>§dst_address_group: Option<String>Implementations§
Source§impl UpdateFirewallPolicyRequest
impl UpdateFirewallPolicyRequest
Sourcepub fn resolve_filters(&mut self) -> Result<(), String>
pub fn resolve_filters(&mut self) -> Result<(), String>
Trait Implementations§
Source§impl Clone for UpdateFirewallPolicyRequest
impl Clone for UpdateFirewallPolicyRequest
Source§fn clone(&self) -> UpdateFirewallPolicyRequest
fn clone(&self) -> UpdateFirewallPolicyRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateFirewallPolicyRequest
impl Debug for UpdateFirewallPolicyRequest
Source§impl Default for UpdateFirewallPolicyRequest
impl Default for UpdateFirewallPolicyRequest
Source§fn default() -> UpdateFirewallPolicyRequest
fn default() -> UpdateFirewallPolicyRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateFirewallPolicyRequest
impl<'de> Deserialize<'de> for UpdateFirewallPolicyRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateFirewallPolicyRequest
impl RefUnwindSafe for UpdateFirewallPolicyRequest
impl Send for UpdateFirewallPolicyRequest
impl Sync for UpdateFirewallPolicyRequest
impl Unpin for UpdateFirewallPolicyRequest
impl UnsafeUnpin for UpdateFirewallPolicyRequest
impl UnwindSafe for UpdateFirewallPolicyRequest
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