#[non_exhaustive]pub struct ListInsightsOutputBuilder { /* private fields */ }
Expand description
A builder for ListInsightsOutput
.
Implementations§
source§impl ListInsightsOutputBuilder
impl ListInsightsOutputBuilder
sourcepub fn proactive_insights(self, input: ProactiveInsightSummary) -> Self
pub fn proactive_insights(self, input: ProactiveInsightSummary) -> Self
Appends an item to proactive_insights
.
To override the contents of this collection use set_proactive_insights
.
The returned list of proactive insights.
sourcepub fn set_proactive_insights(
self,
input: Option<Vec<ProactiveInsightSummary>>
) -> Self
pub fn set_proactive_insights( self, input: Option<Vec<ProactiveInsightSummary>> ) -> Self
The returned list of proactive insights.
sourcepub fn get_proactive_insights(&self) -> &Option<Vec<ProactiveInsightSummary>>
pub fn get_proactive_insights(&self) -> &Option<Vec<ProactiveInsightSummary>>
The returned list of proactive insights.
sourcepub fn reactive_insights(self, input: ReactiveInsightSummary) -> Self
pub fn reactive_insights(self, input: ReactiveInsightSummary) -> Self
Appends an item to reactive_insights
.
To override the contents of this collection use set_reactive_insights
.
The returned list of reactive insights.
sourcepub fn set_reactive_insights(
self,
input: Option<Vec<ReactiveInsightSummary>>
) -> Self
pub fn set_reactive_insights( self, input: Option<Vec<ReactiveInsightSummary>> ) -> Self
The returned list of reactive insights.
sourcepub fn get_reactive_insights(&self) -> &Option<Vec<ReactiveInsightSummary>>
pub fn get_reactive_insights(&self) -> &Option<Vec<ReactiveInsightSummary>>
The returned list of reactive insights.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
sourcepub fn build(self) -> ListInsightsOutput
pub fn build(self) -> ListInsightsOutput
Consumes the builder and constructs a ListInsightsOutput
.
Trait Implementations§
source§impl Clone for ListInsightsOutputBuilder
impl Clone for ListInsightsOutputBuilder
source§fn clone(&self) -> ListInsightsOutputBuilder
fn clone(&self) -> ListInsightsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListInsightsOutputBuilder
impl Debug for ListInsightsOutputBuilder
source§impl Default for ListInsightsOutputBuilder
impl Default for ListInsightsOutputBuilder
source§fn default() -> ListInsightsOutputBuilder
fn default() -> ListInsightsOutputBuilder
source§impl PartialEq for ListInsightsOutputBuilder
impl PartialEq for ListInsightsOutputBuilder
source§fn eq(&self, other: &ListInsightsOutputBuilder) -> bool
fn eq(&self, other: &ListInsightsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListInsightsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListInsightsOutputBuilder
impl RefUnwindSafe for ListInsightsOutputBuilder
impl Send for ListInsightsOutputBuilder
impl Sync for ListInsightsOutputBuilder
impl Unpin for ListInsightsOutputBuilder
impl UnwindSafe for ListInsightsOutputBuilder
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> 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