Struct aws_sdk_iotanalytics::model::ChannelSummary
source · #[non_exhaustive]pub struct ChannelSummary { /* private fields */ }Expand description
A summary of information about a channel.
Implementations§
source§impl ChannelSummary
impl ChannelSummary
sourcepub fn channel_name(&self) -> Option<&str>
pub fn channel_name(&self) -> Option<&str>
The name of the channel.
sourcepub fn channel_storage(&self) -> Option<&ChannelStorageSummary>
pub fn channel_storage(&self) -> Option<&ChannelStorageSummary>
Where channel data is stored.
sourcepub fn status(&self) -> Option<&ChannelStatus>
pub fn status(&self) -> Option<&ChannelStatus>
The status of the channel.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the channel was created.
sourcepub fn last_update_time(&self) -> Option<&DateTime>
pub fn last_update_time(&self) -> Option<&DateTime>
The last time the channel was updated.
sourcepub fn last_message_arrival_time(&self) -> Option<&DateTime>
pub fn last_message_arrival_time(&self) -> Option<&DateTime>
The last time when a new message arrived in the channel.
IoT Analytics updates this value at most once per minute for one channel. Hence, the lastMessageArrivalTime value is an approximation.
This feature only applies to messages that arrived in the data store after October 23, 2020.
source§impl ChannelSummary
impl ChannelSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ChannelSummary.
Trait Implementations§
source§impl Clone for ChannelSummary
impl Clone for ChannelSummary
source§fn clone(&self) -> ChannelSummary
fn clone(&self) -> ChannelSummary
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 ChannelSummary
impl Debug for ChannelSummary
source§impl PartialEq<ChannelSummary> for ChannelSummary
impl PartialEq<ChannelSummary> for ChannelSummary
source§fn eq(&self, other: &ChannelSummary) -> bool
fn eq(&self, other: &ChannelSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.