#[non_exhaustive]pub struct ListCoverageInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub filter_criteria: Option<CoverageFilterCriteria>,
}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>The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
next_token: Option<String>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
filter_criteria: Option<CoverageFilterCriteria>An object that contains details on the filters to apply to the coverage data for your environment.
Implementations§
source§impl ListCoverageInput
impl ListCoverageInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
sourcepub fn filter_criteria(&self) -> Option<&CoverageFilterCriteria>
pub fn filter_criteria(&self) -> Option<&CoverageFilterCriteria>
An object that contains details on the filters to apply to the coverage data for your environment.
source§impl ListCoverageInput
impl ListCoverageInput
sourcepub fn builder() -> ListCoverageInputBuilder
pub fn builder() -> ListCoverageInputBuilder
Creates a new builder-style object to manufacture ListCoverageInput.
Trait Implementations§
source§impl Clone for ListCoverageInput
impl Clone for ListCoverageInput
source§fn clone(&self) -> ListCoverageInput
fn clone(&self) -> ListCoverageInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListCoverageInput
impl Debug for ListCoverageInput
source§impl PartialEq for ListCoverageInput
impl PartialEq for ListCoverageInput
impl StructuralPartialEq for ListCoverageInput
Auto Trait Implementations§
impl Freeze for ListCoverageInput
impl RefUnwindSafe for ListCoverageInput
impl Send for ListCoverageInput
impl Sync for ListCoverageInput
impl Unpin for ListCoverageInput
impl UnwindSafe for ListCoverageInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more