Struct aws_sdk_route53resolver::model::FirewallDomainList
source · [−]#[non_exhaustive]pub struct FirewallDomainList {
pub id: Option<String>,
pub arn: Option<String>,
pub name: Option<String>,
pub domain_count: Option<i32>,
pub status: Option<FirewallDomainListStatus>,
pub status_message: Option<String>,
pub managed_owner_name: Option<String>,
pub creator_request_id: Option<String>,
pub creation_time: Option<String>,
pub modification_time: Option<String>,
}Expand description
High-level information about a list of firewall domains for use in a FirewallRule. This is returned by GetFirewallDomainList.
To retrieve the domains that are defined for this domain list, call ListFirewallDomains.
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.id: Option<String>The ID of the domain list.
arn: Option<String>The Amazon Resource Name (ARN) of the firewall domain list.
name: Option<String>The name of the domain list.
domain_count: Option<i32>The number of domain names that are specified in the domain list.
status: Option<FirewallDomainListStatus>The status of the domain list.
status_message: Option<String>Additional information about the status of the list, if available.
managed_owner_name: Option<String>The owner of the list, used only for lists that are not managed by you. For example, the managed domain list AWSManagedDomainsMalwareDomainList has the managed owner name Route 53 Resolver DNS Firewall.
creator_request_id: Option<String>A unique string defined by you to identify the request. This allows you to retry failed requests without the risk of running the operation twice. This can be any unique string, for example, a timestamp.
creation_time: Option<String>The date and time that the domain list was created, in Unix time format and Coordinated Universal Time (UTC).
modification_time: Option<String>The date and time that the domain list was last modified, in Unix time format and Coordinated Universal Time (UTC).
Implementations
sourceimpl FirewallDomainList
impl FirewallDomainList
sourcepub fn domain_count(&self) -> Option<i32>
pub fn domain_count(&self) -> Option<i32>
The number of domain names that are specified in the domain list.
sourcepub fn status(&self) -> Option<&FirewallDomainListStatus>
pub fn status(&self) -> Option<&FirewallDomainListStatus>
The status of the domain list.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
Additional information about the status of the list, if available.
sourcepub fn managed_owner_name(&self) -> Option<&str>
pub fn managed_owner_name(&self) -> Option<&str>
The owner of the list, used only for lists that are not managed by you. For example, the managed domain list AWSManagedDomainsMalwareDomainList has the managed owner name Route 53 Resolver DNS Firewall.
sourcepub fn creator_request_id(&self) -> Option<&str>
pub fn creator_request_id(&self) -> Option<&str>
A unique string defined by you to identify the request. This allows you to retry failed requests without the risk of running the operation twice. This can be any unique string, for example, a timestamp.
sourcepub fn creation_time(&self) -> Option<&str>
pub fn creation_time(&self) -> Option<&str>
The date and time that the domain list was created, in Unix time format and Coordinated Universal Time (UTC).
sourcepub fn modification_time(&self) -> Option<&str>
pub fn modification_time(&self) -> Option<&str>
The date and time that the domain list was last modified, in Unix time format and Coordinated Universal Time (UTC).
sourceimpl FirewallDomainList
impl FirewallDomainList
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FirewallDomainList
Trait Implementations
sourceimpl Clone for FirewallDomainList
impl Clone for FirewallDomainList
sourcefn clone(&self) -> FirewallDomainList
fn clone(&self) -> FirewallDomainList
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 FirewallDomainList
impl Debug for FirewallDomainList
sourceimpl PartialEq<FirewallDomainList> for FirewallDomainList
impl PartialEq<FirewallDomainList> for FirewallDomainList
sourcefn eq(&self, other: &FirewallDomainList) -> bool
fn eq(&self, other: &FirewallDomainList) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &FirewallDomainList) -> bool
fn ne(&self, other: &FirewallDomainList) -> bool
This method tests for !=.
impl StructuralPartialEq for FirewallDomainList
Auto Trait Implementations
impl RefUnwindSafe for FirewallDomainList
impl Send for FirewallDomainList
impl Sync for FirewallDomainList
impl Unpin for FirewallDomainList
impl UnwindSafe for FirewallDomainList
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