pub struct FirewallPolicy {
pub firewall_policy_name: String,
pub firewall_policy_arn: String,
pub firewall_policy_id: String,
pub description: Option<String>,
pub tags: Vec<(String, String)>,
pub firewall_policy_body: Value,
pub encryption_configuration: Option<Value>,
}Expand description
A Network Firewall firewall policy resource.
Fields§
§firewall_policy_name: String§firewall_policy_arn: String§firewall_policy_id: String§description: Option<String>§firewall_policy_body: ValueRaw firewall policy body stored as JSON value.
encryption_configuration: Option<Value>Trait Implementations§
Source§impl Clone for FirewallPolicy
impl Clone for FirewallPolicy
Source§fn clone(&self) -> FirewallPolicy
fn clone(&self) -> FirewallPolicy
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 FirewallPolicy
impl Debug for FirewallPolicy
Source§impl From<&FirewallPolicy> for FirewallPolicyView
impl From<&FirewallPolicy> for FirewallPolicyView
Source§fn from(fp: &FirewallPolicy) -> Self
fn from(fp: &FirewallPolicy) -> Self
Converts to this type from the input type.
Source§impl From<FirewallPolicyView> for FirewallPolicy
impl From<FirewallPolicyView> for FirewallPolicy
Source§fn from(v: FirewallPolicyView) -> Self
fn from(v: FirewallPolicyView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FirewallPolicy
impl RefUnwindSafe for FirewallPolicy
impl Send for FirewallPolicy
impl Sync for FirewallPolicy
impl Unpin for FirewallPolicy
impl UnsafeUnpin for FirewallPolicy
impl UnwindSafe for FirewallPolicy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.