#[non_exhaustive]pub struct BatchGetTracesOutputBuilder { /* private fields */ }
Expand description
A builder for BatchGetTracesOutput
.
Implementations§
source§impl BatchGetTracesOutputBuilder
impl BatchGetTracesOutputBuilder
sourcepub fn traces(self, input: Trace) -> Self
pub fn traces(self, input: Trace) -> Self
Appends an item to traces
.
To override the contents of this collection use set_traces
.
Full traces for the specified requests.
sourcepub fn set_traces(self, input: Option<Vec<Trace>>) -> Self
pub fn set_traces(self, input: Option<Vec<Trace>>) -> Self
Full traces for the specified requests.
sourcepub fn get_traces(&self) -> &Option<Vec<Trace>>
pub fn get_traces(&self) -> &Option<Vec<Trace>>
Full traces for the specified requests.
sourcepub fn unprocessed_trace_ids(self, input: impl Into<String>) -> Self
pub fn unprocessed_trace_ids(self, input: impl Into<String>) -> Self
Appends an item to unprocessed_trace_ids
.
To override the contents of this collection use set_unprocessed_trace_ids
.
Trace IDs of requests that haven't been processed.
sourcepub fn set_unprocessed_trace_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_unprocessed_trace_ids(self, input: Option<Vec<String>>) -> Self
Trace IDs of requests that haven't been processed.
sourcepub fn get_unprocessed_trace_ids(&self) -> &Option<Vec<String>>
pub fn get_unprocessed_trace_ids(&self) -> &Option<Vec<String>>
Trace IDs of requests that haven't been processed.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Pagination token.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Pagination token.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
Pagination token.
sourcepub fn build(self) -> BatchGetTracesOutput
pub fn build(self) -> BatchGetTracesOutput
Consumes the builder and constructs a BatchGetTracesOutput
.
Trait Implementations§
source§impl Clone for BatchGetTracesOutputBuilder
impl Clone for BatchGetTracesOutputBuilder
source§fn clone(&self) -> BatchGetTracesOutputBuilder
fn clone(&self) -> BatchGetTracesOutputBuilder
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 BatchGetTracesOutputBuilder
impl Debug for BatchGetTracesOutputBuilder
source§impl Default for BatchGetTracesOutputBuilder
impl Default for BatchGetTracesOutputBuilder
source§fn default() -> BatchGetTracesOutputBuilder
fn default() -> BatchGetTracesOutputBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for BatchGetTracesOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetTracesOutputBuilder
impl RefUnwindSafe for BatchGetTracesOutputBuilder
impl Send for BatchGetTracesOutputBuilder
impl Sync for BatchGetTracesOutputBuilder
impl Unpin for BatchGetTracesOutputBuilder
impl UnwindSafe for BatchGetTracesOutputBuilder
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.