#[non_exhaustive]pub struct ListCoverageInput {
pub detector_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub filter_criteria: Option<CoverageFilterCriteria>,
pub sort_criteria: Option<CoverageSortCriteria>,
}
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.detector_id: Option<String>
The unique ID of the detector whose coverage details you want to retrieve.
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. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
max_results: Option<i32>
The maximum number of results to return in the response.
filter_criteria: Option<CoverageFilterCriteria>
Represents the criteria used to filter the coverage details.
sort_criteria: Option<CoverageSortCriteria>
Represents the criteria used to sort the coverage details.
Implementations§
source§impl ListCoverageInput
impl ListCoverageInput
sourcepub fn detector_id(&self) -> Option<&str>
pub fn detector_id(&self) -> Option<&str>
The unique ID of the detector whose coverage details you want to retrieve.
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. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in the response.
sourcepub fn filter_criteria(&self) -> Option<&CoverageFilterCriteria>
pub fn filter_criteria(&self) -> Option<&CoverageFilterCriteria>
Represents the criteria used to filter the coverage details.
sourcepub fn sort_criteria(&self) -> Option<&CoverageSortCriteria>
pub fn sort_criteria(&self) -> Option<&CoverageSortCriteria>
Represents the criteria used to sort the coverage details.
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
source§fn eq(&self, other: &ListCoverageInput) -> bool
fn eq(&self, other: &ListCoverageInput) -> bool
self
and other
values to be equal, and is used
by ==
.