#[non_exhaustive]pub struct UpdateResolverConfigInput {
pub resource_id: Option<String>,
pub autodefined_reverse_flag: Option<AutodefinedReverseFlag>,
}
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.resource_id: Option<String>
Resource ID of the Amazon VPC that you want to update the Resolver configuration for.
autodefined_reverse_flag: Option<AutodefinedReverseFlag>
Indicates whether or not the Resolver will create autodefined rules for reverse DNS lookups. This is enabled by default. Disabling this option will also affect EC2-Classic instances using ClassicLink. For more information, see ClassicLink in the Amazon EC2 guide.
It can take some time for the status change to be completed.
Implementations
sourceimpl UpdateResolverConfigInput
impl UpdateResolverConfigInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateResolverConfig, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateResolverConfig, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateResolverConfig
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateResolverConfigInput
sourceimpl UpdateResolverConfigInput
impl UpdateResolverConfigInput
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
Resource ID of the Amazon VPC that you want to update the Resolver configuration for.
sourcepub fn autodefined_reverse_flag(&self) -> Option<&AutodefinedReverseFlag>
pub fn autodefined_reverse_flag(&self) -> Option<&AutodefinedReverseFlag>
Indicates whether or not the Resolver will create autodefined rules for reverse DNS lookups. This is enabled by default. Disabling this option will also affect EC2-Classic instances using ClassicLink. For more information, see ClassicLink in the Amazon EC2 guide.
It can take some time for the status change to be completed.
Trait Implementations
sourceimpl Clone for UpdateResolverConfigInput
impl Clone for UpdateResolverConfigInput
sourcefn clone(&self) -> UpdateResolverConfigInput
fn clone(&self) -> UpdateResolverConfigInput
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 UpdateResolverConfigInput
impl Debug for UpdateResolverConfigInput
sourceimpl PartialEq<UpdateResolverConfigInput> for UpdateResolverConfigInput
impl PartialEq<UpdateResolverConfigInput> for UpdateResolverConfigInput
sourcefn eq(&self, other: &UpdateResolverConfigInput) -> bool
fn eq(&self, other: &UpdateResolverConfigInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UpdateResolverConfigInput) -> bool
fn ne(&self, other: &UpdateResolverConfigInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for UpdateResolverConfigInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateResolverConfigInput
impl Send for UpdateResolverConfigInput
impl Sync for UpdateResolverConfigInput
impl Unpin for UpdateResolverConfigInput
impl UnwindSafe for UpdateResolverConfigInput
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