#[non_exhaustive]pub struct FirewallPolicyResponse {
pub firewall_policy_name: Option<String>,
pub firewall_policy_arn: Option<String>,
pub firewall_policy_id: Option<String>,
pub description: Option<String>,
pub firewall_policy_status: Option<ResourceStatus>,
pub tags: Option<Vec<Tag>>,
pub consumed_stateless_rule_capacity: Option<i32>,
pub consumed_stateful_rule_capacity: Option<i32>,
pub number_of_associations: Option<i32>,
}
Expand description
The high-level properties of a firewall policy. This, along with the FirewallPolicy
, define the policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy
.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.firewall_policy_name: Option<String>
The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.
firewall_policy_arn: Option<String>
The Amazon Resource Name (ARN) of the firewall policy.
If this response is for a create request that had DryRun
set to TRUE
, then this ARN is a placeholder that isn't attached to a valid resource.
firewall_policy_id: Option<String>
The unique identifier for the firewall policy.
description: Option<String>
A description of the firewall policy.
firewall_policy_status: Option<ResourceStatus>
The current status of the firewall policy. You can retrieve this for a firewall policy by calling DescribeFirewallPolicy
and providing the firewall policy's name or ARN.
The key:value pairs to associate with the resource.
consumed_stateless_rule_capacity: Option<i32>
The number of capacity units currently consumed by the policy's stateless rules.
consumed_stateful_rule_capacity: Option<i32>
The number of capacity units currently consumed by the policy's stateful rules.
number_of_associations: Option<i32>
The number of firewalls that are associated with this firewall policy.
Implementations
sourceimpl FirewallPolicyResponse
impl FirewallPolicyResponse
sourcepub fn firewall_policy_name(&self) -> Option<&str>
pub fn firewall_policy_name(&self) -> Option<&str>
The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.
sourcepub fn firewall_policy_arn(&self) -> Option<&str>
pub fn firewall_policy_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the firewall policy.
If this response is for a create request that had DryRun
set to TRUE
, then this ARN is a placeholder that isn't attached to a valid resource.
sourcepub fn firewall_policy_id(&self) -> Option<&str>
pub fn firewall_policy_id(&self) -> Option<&str>
The unique identifier for the firewall policy.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the firewall policy.
sourcepub fn firewall_policy_status(&self) -> Option<&ResourceStatus>
pub fn firewall_policy_status(&self) -> Option<&ResourceStatus>
The current status of the firewall policy. You can retrieve this for a firewall policy by calling DescribeFirewallPolicy
and providing the firewall policy's name or ARN.
The key:value pairs to associate with the resource.
sourcepub fn consumed_stateless_rule_capacity(&self) -> Option<i32>
pub fn consumed_stateless_rule_capacity(&self) -> Option<i32>
The number of capacity units currently consumed by the policy's stateless rules.
sourcepub fn consumed_stateful_rule_capacity(&self) -> Option<i32>
pub fn consumed_stateful_rule_capacity(&self) -> Option<i32>
The number of capacity units currently consumed by the policy's stateful rules.
sourcepub fn number_of_associations(&self) -> Option<i32>
pub fn number_of_associations(&self) -> Option<i32>
The number of firewalls that are associated with this firewall policy.
sourceimpl FirewallPolicyResponse
impl FirewallPolicyResponse
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FirewallPolicyResponse
Trait Implementations
sourceimpl Clone for FirewallPolicyResponse
impl Clone for FirewallPolicyResponse
sourcefn clone(&self) -> FirewallPolicyResponse
fn clone(&self) -> FirewallPolicyResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FirewallPolicyResponse
impl Debug for FirewallPolicyResponse
sourceimpl PartialEq<FirewallPolicyResponse> for FirewallPolicyResponse
impl PartialEq<FirewallPolicyResponse> for FirewallPolicyResponse
sourcefn eq(&self, other: &FirewallPolicyResponse) -> bool
fn eq(&self, other: &FirewallPolicyResponse) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FirewallPolicyResponse) -> bool
fn ne(&self, other: &FirewallPolicyResponse) -> bool
This method tests for !=
.
impl StructuralPartialEq for FirewallPolicyResponse
Auto Trait Implementations
impl RefUnwindSafe for FirewallPolicyResponse
impl Send for FirewallPolicyResponse
impl Sync for FirewallPolicyResponse
impl Unpin for FirewallPolicyResponse
impl UnwindSafe for FirewallPolicyResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more