#[non_exhaustive]pub struct DescribeFirewallInput {
pub firewall_name: Option<String>,
pub firewall_arn: Option<String>,
}
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_name: Option<String>
The descriptive name of the firewall. You can't change the name of a firewall after you create it.
You must specify the ARN or the name, and you can specify both.
firewall_arn: Option<String>
The Amazon Resource Name (ARN) of the firewall.
You must specify the ARN or the name, and you can specify both.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeFirewall, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeFirewall, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeFirewall
>
Creates a new builder-style object to manufacture DescribeFirewallInput
The descriptive name of the firewall. You can't change the name of a firewall after you create it.
You must specify the ARN or the name, and you can specify both.
The Amazon Resource Name (ARN) of the firewall.
You must specify the ARN or the name, and you can specify both.
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 DescribeFirewallInput
impl Send for DescribeFirewallInput
impl Sync for DescribeFirewallInput
impl Unpin for DescribeFirewallInput
impl UnwindSafe for DescribeFirewallInput
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