Struct aws_sdk_iotanalytics::operation::describe_channel::builders::DescribeChannelOutputBuilder
source · #[non_exhaustive]pub struct DescribeChannelOutputBuilder { /* private fields */ }Expand description
A builder for DescribeChannelOutput.
Implementations§
source§impl DescribeChannelOutputBuilder
impl DescribeChannelOutputBuilder
sourcepub fn channel(self, input: Channel) -> Self
pub fn channel(self, input: Channel) -> Self
An object that contains information about the channel.
sourcepub fn set_channel(self, input: Option<Channel>) -> Self
pub fn set_channel(self, input: Option<Channel>) -> Self
An object that contains information about the channel.
sourcepub fn get_channel(&self) -> &Option<Channel>
pub fn get_channel(&self) -> &Option<Channel>
An object that contains information about the channel.
sourcepub fn statistics(self, input: ChannelStatistics) -> Self
pub fn statistics(self, input: ChannelStatistics) -> Self
Statistics about the channel. Included if the includeStatistics parameter is set to true in the request.
sourcepub fn set_statistics(self, input: Option<ChannelStatistics>) -> Self
pub fn set_statistics(self, input: Option<ChannelStatistics>) -> Self
Statistics about the channel. Included if the includeStatistics parameter is set to true in the request.
sourcepub fn get_statistics(&self) -> &Option<ChannelStatistics>
pub fn get_statistics(&self) -> &Option<ChannelStatistics>
Statistics about the channel. Included if the includeStatistics parameter is set to true in the request.
sourcepub fn build(self) -> DescribeChannelOutput
pub fn build(self) -> DescribeChannelOutput
Consumes the builder and constructs a DescribeChannelOutput.
Trait Implementations§
source§impl Clone for DescribeChannelOutputBuilder
impl Clone for DescribeChannelOutputBuilder
source§fn clone(&self) -> DescribeChannelOutputBuilder
fn clone(&self) -> DescribeChannelOutputBuilder
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 DescribeChannelOutputBuilder
impl Debug for DescribeChannelOutputBuilder
source§impl Default for DescribeChannelOutputBuilder
impl Default for DescribeChannelOutputBuilder
source§fn default() -> DescribeChannelOutputBuilder
fn default() -> DescribeChannelOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeChannelOutputBuilder
impl PartialEq for DescribeChannelOutputBuilder
source§fn eq(&self, other: &DescribeChannelOutputBuilder) -> bool
fn eq(&self, other: &DescribeChannelOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeChannelOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeChannelOutputBuilder
impl RefUnwindSafe for DescribeChannelOutputBuilder
impl Send for DescribeChannelOutputBuilder
impl Sync for DescribeChannelOutputBuilder
impl Unpin for DescribeChannelOutputBuilder
impl UnwindSafe for DescribeChannelOutputBuilder
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> 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.