Struct aws_sdk_iot::operation::list_v2_logging_levels::builders::ListV2LoggingLevelsOutputBuilder
source · #[non_exhaustive]pub struct ListV2LoggingLevelsOutputBuilder { /* private fields */ }
Expand description
A builder for ListV2LoggingLevelsOutput
.
Implementations§
source§impl ListV2LoggingLevelsOutputBuilder
impl ListV2LoggingLevelsOutputBuilder
sourcepub fn log_target_configurations(self, input: LogTargetConfiguration) -> Self
pub fn log_target_configurations(self, input: LogTargetConfiguration) -> Self
Appends an item to log_target_configurations
.
To override the contents of this collection use set_log_target_configurations
.
The logging configuration for a target.
sourcepub fn set_log_target_configurations(
self,
input: Option<Vec<LogTargetConfiguration>>,
) -> Self
pub fn set_log_target_configurations( self, input: Option<Vec<LogTargetConfiguration>>, ) -> Self
The logging configuration for a target.
sourcepub fn get_log_target_configurations(
&self,
) -> &Option<Vec<LogTargetConfiguration>>
pub fn get_log_target_configurations( &self, ) -> &Option<Vec<LogTargetConfiguration>>
The logging configuration for a target.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token to use to get the next set of results, or null if there are no additional results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token to use to get the next set of results, or null if there are no additional results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token to use to get the next set of results, or null if there are no additional results.
sourcepub fn build(self) -> ListV2LoggingLevelsOutput
pub fn build(self) -> ListV2LoggingLevelsOutput
Consumes the builder and constructs a ListV2LoggingLevelsOutput
.
Trait Implementations§
source§impl Clone for ListV2LoggingLevelsOutputBuilder
impl Clone for ListV2LoggingLevelsOutputBuilder
source§fn clone(&self) -> ListV2LoggingLevelsOutputBuilder
fn clone(&self) -> ListV2LoggingLevelsOutputBuilder
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 Default for ListV2LoggingLevelsOutputBuilder
impl Default for ListV2LoggingLevelsOutputBuilder
source§fn default() -> ListV2LoggingLevelsOutputBuilder
fn default() -> ListV2LoggingLevelsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListV2LoggingLevelsOutputBuilder
impl PartialEq for ListV2LoggingLevelsOutputBuilder
source§fn eq(&self, other: &ListV2LoggingLevelsOutputBuilder) -> bool
fn eq(&self, other: &ListV2LoggingLevelsOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListV2LoggingLevelsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListV2LoggingLevelsOutputBuilder
impl RefUnwindSafe for ListV2LoggingLevelsOutputBuilder
impl Send for ListV2LoggingLevelsOutputBuilder
impl Sync for ListV2LoggingLevelsOutputBuilder
impl Unpin for ListV2LoggingLevelsOutputBuilder
impl UnwindSafe for ListV2LoggingLevelsOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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.