#[non_exhaustive]pub struct FirewallPolicyMetadata {
pub name: Option<String>,
pub arn: Option<String>,
}
Expand description
High-level information about a firewall policy, returned by operations like create and describe. You can use the information provided in the metadata to retrieve and manage a firewall 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.name: Option<String>
The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.
arn: Option<String>
The Amazon Resource Name (ARN) of the firewall policy.
Implementations
Creates a new builder-style object to manufacture FirewallPolicyMetadata
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for FirewallPolicyMetadata
impl Send for FirewallPolicyMetadata
impl Sync for FirewallPolicyMetadata
impl Unpin for FirewallPolicyMetadata
impl UnwindSafe for FirewallPolicyMetadata
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more