#[non_exhaustive]pub struct ListCoverageOutput {
pub next_token: Option<String>,
pub covered_resources: Option<Vec<CoveredResource>>,
/* private fields */
}
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.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.
covered_resources: Option<Vec<CoveredResource>>
An object that contains details on the covered resources in your environment.
Implementations§
source§impl ListCoverageOutput
impl ListCoverageOutput
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 covered_resources(&self) -> &[CoveredResource]
pub fn covered_resources(&self) -> &[CoveredResource]
An object that contains details on the covered resources in your environment.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .covered_resources.is_none()
.
source§impl ListCoverageOutput
impl ListCoverageOutput
sourcepub fn builder() -> ListCoverageOutputBuilder
pub fn builder() -> ListCoverageOutputBuilder
Creates a new builder-style object to manufacture ListCoverageOutput
.
Trait Implementations§
source§impl Clone for ListCoverageOutput
impl Clone for ListCoverageOutput
source§fn clone(&self) -> ListCoverageOutput
fn clone(&self) -> ListCoverageOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListCoverageOutput
impl Debug for ListCoverageOutput
source§impl PartialEq for ListCoverageOutput
impl PartialEq for ListCoverageOutput
source§fn eq(&self, other: &ListCoverageOutput) -> bool
fn eq(&self, other: &ListCoverageOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListCoverageOutput
impl RequestId for ListCoverageOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.