#[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§
source§impl 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.
source§impl FirewallPolicyResponse
impl FirewallPolicyResponse
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FirewallPolicyResponse
.
Trait Implementations§
source§impl Clone for FirewallPolicyResponse
impl Clone for FirewallPolicyResponse
source§fn clone(&self) -> FirewallPolicyResponse
fn clone(&self) -> FirewallPolicyResponse
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FirewallPolicyResponse
impl Debug for FirewallPolicyResponse
source§impl PartialEq<FirewallPolicyResponse> for FirewallPolicyResponse
impl PartialEq<FirewallPolicyResponse> for FirewallPolicyResponse
source§fn eq(&self, other: &FirewallPolicyResponse) -> bool
fn eq(&self, other: &FirewallPolicyResponse) -> bool
self
and other
values to be equal, and is used
by ==
.