#[non_exhaustive]pub struct ResolverDnssecConfig {
pub id: Option<String>,
pub owner_id: Option<String>,
pub resource_id: Option<String>,
pub validation_status: Option<ResolverDnssecValidationStatus>,
}
Expand description
A complex type that contains information about a configuration for DNSSEC validation.
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 for a configuration for DNSSEC validation.
owner_id: Option<String>
The owner account ID of the virtual private cloud (VPC) for a configuration for DNSSEC validation.
resource_id: Option<String>
The ID of the virtual private cloud (VPC) that you're configuring the DNSSEC validation status for.
validation_status: Option<ResolverDnssecValidationStatus>
The validation status for a DNSSEC configuration. The status can be one of the following:
-
ENABLING: DNSSEC validation is being enabled but is not complete.
-
ENABLED: DNSSEC validation is enabled.
-
DISABLING: DNSSEC validation is being disabled but is not complete.
-
DISABLED DNSSEC validation is disabled.
Implementations
sourceimpl ResolverDnssecConfig
impl ResolverDnssecConfig
sourcepub fn owner_id(&self) -> Option<&str>
pub fn owner_id(&self) -> Option<&str>
The owner account ID of the virtual private cloud (VPC) for a configuration for DNSSEC validation.
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
The ID of the virtual private cloud (VPC) that you're configuring the DNSSEC validation status for.
sourcepub fn validation_status(&self) -> Option<&ResolverDnssecValidationStatus>
pub fn validation_status(&self) -> Option<&ResolverDnssecValidationStatus>
The validation status for a DNSSEC configuration. The status can be one of the following:
-
ENABLING: DNSSEC validation is being enabled but is not complete.
-
ENABLED: DNSSEC validation is enabled.
-
DISABLING: DNSSEC validation is being disabled but is not complete.
-
DISABLED DNSSEC validation is disabled.
sourceimpl ResolverDnssecConfig
impl ResolverDnssecConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ResolverDnssecConfig
Trait Implementations
sourceimpl Clone for ResolverDnssecConfig
impl Clone for ResolverDnssecConfig
sourcefn clone(&self) -> ResolverDnssecConfig
fn clone(&self) -> ResolverDnssecConfig
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 ResolverDnssecConfig
impl Debug for ResolverDnssecConfig
sourceimpl PartialEq<ResolverDnssecConfig> for ResolverDnssecConfig
impl PartialEq<ResolverDnssecConfig> for ResolverDnssecConfig
sourcefn eq(&self, other: &ResolverDnssecConfig) -> bool
fn eq(&self, other: &ResolverDnssecConfig) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ResolverDnssecConfig) -> bool
fn ne(&self, other: &ResolverDnssecConfig) -> bool
This method tests for !=
.
impl StructuralPartialEq for ResolverDnssecConfig
Auto Trait Implementations
impl RefUnwindSafe for ResolverDnssecConfig
impl Send for ResolverDnssecConfig
impl Sync for ResolverDnssecConfig
impl Unpin for ResolverDnssecConfig
impl UnwindSafe for ResolverDnssecConfig
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