#[non_exhaustive]pub struct ListCoverageOutputBuilder { /* private fields */ }Expand description
A builder for ListCoverageOutput.
Implementations§
source§impl ListCoverageOutputBuilder
impl ListCoverageOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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 set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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 get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &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.
sourcepub fn covered_resources(self, input: CoveredResource) -> Self
pub fn covered_resources(self, input: CoveredResource) -> Self
Appends an item to covered_resources.
To override the contents of this collection use set_covered_resources.
An object that contains details on the covered resources in your environment.
sourcepub fn set_covered_resources(self, input: Option<Vec<CoveredResource>>) -> Self
pub fn set_covered_resources(self, input: Option<Vec<CoveredResource>>) -> Self
An object that contains details on the covered resources in your environment.
sourcepub fn get_covered_resources(&self) -> &Option<Vec<CoveredResource>>
pub fn get_covered_resources(&self) -> &Option<Vec<CoveredResource>>
An object that contains details on the covered resources in your environment.
sourcepub fn build(self) -> ListCoverageOutput
pub fn build(self) -> ListCoverageOutput
Consumes the builder and constructs a ListCoverageOutput.
Trait Implementations§
source§impl Clone for ListCoverageOutputBuilder
impl Clone for ListCoverageOutputBuilder
source§fn clone(&self) -> ListCoverageOutputBuilder
fn clone(&self) -> ListCoverageOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListCoverageOutputBuilder
impl Debug for ListCoverageOutputBuilder
source§impl Default for ListCoverageOutputBuilder
impl Default for ListCoverageOutputBuilder
source§fn default() -> ListCoverageOutputBuilder
fn default() -> ListCoverageOutputBuilder
impl StructuralPartialEq for ListCoverageOutputBuilder
Auto Trait Implementations§
impl Freeze for ListCoverageOutputBuilder
impl RefUnwindSafe for ListCoverageOutputBuilder
impl Send for ListCoverageOutputBuilder
impl Sync for ListCoverageOutputBuilder
impl Unpin for ListCoverageOutputBuilder
impl UnwindSafe for ListCoverageOutputBuilder
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