#[non_exhaustive]pub struct GetResolverConfigOutput {
pub resolver_config: Option<ResolverConfig>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.resolver_config: Option<ResolverConfig>
Information about the behavior configuration of Route 53 Resolver behavior for the VPC you specified in the GetResolverConfig
request.
Implementations§
source§impl GetResolverConfigOutput
impl GetResolverConfigOutput
sourcepub fn resolver_config(&self) -> Option<&ResolverConfig>
pub fn resolver_config(&self) -> Option<&ResolverConfig>
Information about the behavior configuration of Route 53 Resolver behavior for the VPC you specified in the GetResolverConfig
request.
source§impl GetResolverConfigOutput
impl GetResolverConfigOutput
sourcepub fn builder() -> GetResolverConfigOutputBuilder
pub fn builder() -> GetResolverConfigOutputBuilder
Creates a new builder-style object to manufacture GetResolverConfigOutput
.
Trait Implementations§
source§impl Clone for GetResolverConfigOutput
impl Clone for GetResolverConfigOutput
source§fn clone(&self) -> GetResolverConfigOutput
fn clone(&self) -> GetResolverConfigOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetResolverConfigOutput
impl Debug for GetResolverConfigOutput
source§impl PartialEq for GetResolverConfigOutput
impl PartialEq for GetResolverConfigOutput
source§fn eq(&self, other: &GetResolverConfigOutput) -> bool
fn eq(&self, other: &GetResolverConfigOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetResolverConfigOutput
impl RequestId for GetResolverConfigOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetResolverConfigOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetResolverConfigOutput
impl Send for GetResolverConfigOutput
impl Sync for GetResolverConfigOutput
impl Unpin for GetResolverConfigOutput
impl UnwindSafe for GetResolverConfigOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.