Struct aws_sdk_lexmodelsv2::operation::list_intent_paths::builders::ListIntentPathsOutputBuilder
source · #[non_exhaustive]pub struct ListIntentPathsOutputBuilder { /* private fields */ }Expand description
A builder for ListIntentPathsOutput.
Implementations§
source§impl ListIntentPathsOutputBuilder
impl ListIntentPathsOutputBuilder
sourcepub fn node_summaries(self, input: AnalyticsIntentNodeSummary) -> Self
pub fn node_summaries(self, input: AnalyticsIntentNodeSummary) -> Self
Appends an item to node_summaries.
To override the contents of this collection use set_node_summaries.
A list of objects, each of which contains information about a node in the intent path for which you requested metrics.
sourcepub fn set_node_summaries(
self,
input: Option<Vec<AnalyticsIntentNodeSummary>>,
) -> Self
pub fn set_node_summaries( self, input: Option<Vec<AnalyticsIntentNodeSummary>>, ) -> Self
A list of objects, each of which contains information about a node in the intent path for which you requested metrics.
sourcepub fn get_node_summaries(&self) -> &Option<Vec<AnalyticsIntentNodeSummary>>
pub fn get_node_summaries(&self) -> &Option<Vec<AnalyticsIntentNodeSummary>>
A list of objects, each of which contains information about a node in the intent path for which you requested metrics.
sourcepub fn build(self) -> ListIntentPathsOutput
pub fn build(self) -> ListIntentPathsOutput
Consumes the builder and constructs a ListIntentPathsOutput.
Trait Implementations§
source§impl Clone for ListIntentPathsOutputBuilder
impl Clone for ListIntentPathsOutputBuilder
source§fn clone(&self) -> ListIntentPathsOutputBuilder
fn clone(&self) -> ListIntentPathsOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ListIntentPathsOutputBuilder
impl Debug for ListIntentPathsOutputBuilder
source§impl Default for ListIntentPathsOutputBuilder
impl Default for ListIntentPathsOutputBuilder
source§fn default() -> ListIntentPathsOutputBuilder
fn default() -> ListIntentPathsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListIntentPathsOutputBuilder
impl PartialEq for ListIntentPathsOutputBuilder
source§fn eq(&self, other: &ListIntentPathsOutputBuilder) -> bool
fn eq(&self, other: &ListIntentPathsOutputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListIntentPathsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListIntentPathsOutputBuilder
impl RefUnwindSafe for ListIntentPathsOutputBuilder
impl Send for ListIntentPathsOutputBuilder
impl Sync for ListIntentPathsOutputBuilder
impl Unpin for ListIntentPathsOutputBuilder
impl UnwindSafe for ListIntentPathsOutputBuilder
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.