Struct aws_sdk_codegurusecurity::operation::list_findings_metrics::builders::ListFindingsMetricsOutputBuilder
source · #[non_exhaustive]pub struct ListFindingsMetricsOutputBuilder { /* private fields */ }
Expand description
A builder for ListFindingsMetricsOutput
.
Implementations§
source§impl ListFindingsMetricsOutputBuilder
impl ListFindingsMetricsOutputBuilder
sourcepub fn findings_metrics(self, input: AccountFindingsMetric) -> Self
pub fn findings_metrics(self, input: AccountFindingsMetric) -> Self
Appends an item to findings_metrics
.
To override the contents of this collection use set_findings_metrics
.
A list of AccountFindingsMetric
objects retrieved from the specified time interval.
sourcepub fn set_findings_metrics(
self,
input: Option<Vec<AccountFindingsMetric>>,
) -> Self
pub fn set_findings_metrics( self, input: Option<Vec<AccountFindingsMetric>>, ) -> Self
A list of AccountFindingsMetric
objects retrieved from the specified time interval.
sourcepub fn get_findings_metrics(&self) -> &Option<Vec<AccountFindingsMetric>>
pub fn get_findings_metrics(&self) -> &Option<Vec<AccountFindingsMetric>>
A list of AccountFindingsMetric
objects retrieved from the specified time interval.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A pagination token. You can use this in future calls to ListFindingMetrics
to continue listing results after the current page.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A pagination token. You can use this in future calls to ListFindingMetrics
to continue listing results after the current page.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A pagination token. You can use this in future calls to ListFindingMetrics
to continue listing results after the current page.
sourcepub fn build(self) -> ListFindingsMetricsOutput
pub fn build(self) -> ListFindingsMetricsOutput
Consumes the builder and constructs a ListFindingsMetricsOutput
.
Trait Implementations§
source§impl Clone for ListFindingsMetricsOutputBuilder
impl Clone for ListFindingsMetricsOutputBuilder
source§fn clone(&self) -> ListFindingsMetricsOutputBuilder
fn clone(&self) -> ListFindingsMetricsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListFindingsMetricsOutputBuilder
impl Default for ListFindingsMetricsOutputBuilder
source§fn default() -> ListFindingsMetricsOutputBuilder
fn default() -> ListFindingsMetricsOutputBuilder
source§impl PartialEq for ListFindingsMetricsOutputBuilder
impl PartialEq for ListFindingsMetricsOutputBuilder
source§fn eq(&self, other: &ListFindingsMetricsOutputBuilder) -> bool
fn eq(&self, other: &ListFindingsMetricsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListFindingsMetricsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListFindingsMetricsOutputBuilder
impl RefUnwindSafe for ListFindingsMetricsOutputBuilder
impl Send for ListFindingsMetricsOutputBuilder
impl Sync for ListFindingsMetricsOutputBuilder
impl Unpin for ListFindingsMetricsOutputBuilder
impl UnwindSafe for ListFindingsMetricsOutputBuilder
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