Struct aws_sdk_iotanalytics::types::ChannelMessages
source · #[non_exhaustive]pub struct ChannelMessages {
pub s3_paths: Option<Vec<String>>,
}
Expand description
Specifies one or more sets of channel messages.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.s3_paths: Option<Vec<String>>
Specifies one or more keys that identify the Amazon Simple Storage Service (Amazon S3) objects that save your channel messages.
You must use the full path for the key.
Example path: channel/mychannel/__dt=2020-02-29 00:00:00/1582940490000_1582940520000_123456789012_mychannel_0_2118.0.json.gz
Implementations§
source§impl ChannelMessages
impl ChannelMessages
sourcepub fn s3_paths(&self) -> &[String]
pub fn s3_paths(&self) -> &[String]
Specifies one or more keys that identify the Amazon Simple Storage Service (Amazon S3) objects that save your channel messages.
You must use the full path for the key.
Example path: channel/mychannel/__dt=2020-02-29 00:00:00/1582940490000_1582940520000_123456789012_mychannel_0_2118.0.json.gz
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .s3_paths.is_none()
.
source§impl ChannelMessages
impl ChannelMessages
sourcepub fn builder() -> ChannelMessagesBuilder
pub fn builder() -> ChannelMessagesBuilder
Creates a new builder-style object to manufacture ChannelMessages
.
Trait Implementations§
source§impl Clone for ChannelMessages
impl Clone for ChannelMessages
source§fn clone(&self) -> ChannelMessages
fn clone(&self) -> ChannelMessages
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ChannelMessages
impl Debug for ChannelMessages
source§impl PartialEq for ChannelMessages
impl PartialEq for ChannelMessages
source§fn eq(&self, other: &ChannelMessages) -> bool
fn eq(&self, other: &ChannelMessages) -> bool
self
and other
values to be equal, and is used
by ==
.