#[non_exhaustive]pub struct FirewallPolicyResponse { /* private fields */ }
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
.
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.
sourcepub fn encryption_configuration(&self) -> Option<&EncryptionConfiguration>
pub fn encryption_configuration(&self) -> Option<&EncryptionConfiguration>
A complex type that contains the Amazon Web Services KMS encryption configuration settings for your firewall policy.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The last time that the firewall policy was changed.
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 · sourcefn borrow_mut(&mut self) -> &mut T
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> 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