#[non_exhaustive]pub struct ListResolverDnssecConfigsInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub filters: Option<Vec<Filter>>,
}
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.max_results: Option<i32>
Optional: An integer that specifies the maximum number of DNSSEC configuration results that you want Amazon Route 53 to return. If you don't specify a value for MaxResults
, Route 53 returns up to 100 configuration per page.
next_token: Option<String>
(Optional) If the current Amazon Web Services account has more than MaxResults
DNSSEC configurations, use NextToken
to get the second and subsequent pages of results.
For the first ListResolverDnssecConfigs
request, omit this value.
For the second and subsequent requests, get the value of NextToken
from the previous response and specify that value for NextToken
in the request.
filters: Option<Vec<Filter>>
An optional specification to return a subset of objects.
Implementations
sourceimpl ListResolverDnssecConfigsInput
impl ListResolverDnssecConfigsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListResolverDnssecConfigs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListResolverDnssecConfigs, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListResolverDnssecConfigs
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListResolverDnssecConfigsInput
sourceimpl ListResolverDnssecConfigsInput
impl ListResolverDnssecConfigsInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Optional: An integer that specifies the maximum number of DNSSEC configuration results that you want Amazon Route 53 to return. If you don't specify a value for MaxResults
, Route 53 returns up to 100 configuration per page.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
(Optional) If the current Amazon Web Services account has more than MaxResults
DNSSEC configurations, use NextToken
to get the second and subsequent pages of results.
For the first ListResolverDnssecConfigs
request, omit this value.
For the second and subsequent requests, get the value of NextToken
from the previous response and specify that value for NextToken
in the request.
Trait Implementations
sourceimpl Clone for ListResolverDnssecConfigsInput
impl Clone for ListResolverDnssecConfigsInput
sourcefn clone(&self) -> ListResolverDnssecConfigsInput
fn clone(&self) -> ListResolverDnssecConfigsInput
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 PartialEq<ListResolverDnssecConfigsInput> for ListResolverDnssecConfigsInput
impl PartialEq<ListResolverDnssecConfigsInput> for ListResolverDnssecConfigsInput
sourcefn eq(&self, other: &ListResolverDnssecConfigsInput) -> bool
fn eq(&self, other: &ListResolverDnssecConfigsInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ListResolverDnssecConfigsInput) -> bool
fn ne(&self, other: &ListResolverDnssecConfigsInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for ListResolverDnssecConfigsInput
Auto Trait Implementations
impl RefUnwindSafe for ListResolverDnssecConfigsInput
impl Send for ListResolverDnssecConfigsInput
impl Sync for ListResolverDnssecConfigsInput
impl Unpin for ListResolverDnssecConfigsInput
impl UnwindSafe for ListResolverDnssecConfigsInput
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