#[non_exhaustive]pub struct DeleteFirewallRuleInput {
pub firewall_rule_group_id: Option<String>,
pub firewall_domain_list_id: Option<String>,
pub qtype: 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_rule_group_id: Option<String>
The unique identifier of the firewall rule group that you want to delete the rule from.
firewall_domain_list_id: Option<String>
The ID of the domain list that's used in the rule.
qtype: Option<String>
The DNS query type that the rule you are deleting evaluates. Allowed values are;
-
A: Returns an IPv4 address.
-
AAAA: Returns an Ipv6 address.
-
CAA: Restricts CAs that can create SSL/TLS certifications for the domain.
-
CNAME: Returns another domain name.
-
DS: Record that identifies the DNSSEC signing key of a delegated zone.
-
MX: Specifies mail servers.
-
NAPTR: Regular-expression-based rewriting of domain names.
-
NS: Authoritative name servers.
-
PTR: Maps an IP address to a domain name.
-
SOA: Start of authority record for the zone.
-
SPF: Lists the servers authorized to send emails from a domain.
-
SRV: Application specific values that identify servers.
-
TXT: Verifies email senders and application-specific values.
Implementations§
source§impl DeleteFirewallRuleInput
impl DeleteFirewallRuleInput
sourcepub fn firewall_rule_group_id(&self) -> Option<&str>
pub fn firewall_rule_group_id(&self) -> Option<&str>
The unique identifier of the firewall rule group that you want to delete the rule from.
sourcepub fn firewall_domain_list_id(&self) -> Option<&str>
pub fn firewall_domain_list_id(&self) -> Option<&str>
The ID of the domain list that's used in the rule.
sourcepub fn qtype(&self) -> Option<&str>
pub fn qtype(&self) -> Option<&str>
The DNS query type that the rule you are deleting evaluates. Allowed values are;
-
A: Returns an IPv4 address.
-
AAAA: Returns an Ipv6 address.
-
CAA: Restricts CAs that can create SSL/TLS certifications for the domain.
-
CNAME: Returns another domain name.
-
DS: Record that identifies the DNSSEC signing key of a delegated zone.
-
MX: Specifies mail servers.
-
NAPTR: Regular-expression-based rewriting of domain names.
-
NS: Authoritative name servers.
-
PTR: Maps an IP address to a domain name.
-
SOA: Start of authority record for the zone.
-
SPF: Lists the servers authorized to send emails from a domain.
-
SRV: Application specific values that identify servers.
-
TXT: Verifies email senders and application-specific values.
source§impl DeleteFirewallRuleInput
impl DeleteFirewallRuleInput
sourcepub fn builder() -> DeleteFirewallRuleInputBuilder
pub fn builder() -> DeleteFirewallRuleInputBuilder
Creates a new builder-style object to manufacture DeleteFirewallRuleInput
.
Trait Implementations§
source§impl Clone for DeleteFirewallRuleInput
impl Clone for DeleteFirewallRuleInput
source§fn clone(&self) -> DeleteFirewallRuleInput
fn clone(&self) -> DeleteFirewallRuleInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteFirewallRuleInput
impl Debug for DeleteFirewallRuleInput
source§impl PartialEq for DeleteFirewallRuleInput
impl PartialEq for DeleteFirewallRuleInput
source§fn eq(&self, other: &DeleteFirewallRuleInput) -> bool
fn eq(&self, other: &DeleteFirewallRuleInput) -> bool
self
and other
values to be equal, and is used
by ==
.