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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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) -> Option<&[String]>
pub fn s3_paths(&self) -> Option<&[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
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
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 ChannelMessages
impl Debug for ChannelMessages
source§impl PartialEq<ChannelMessages> for ChannelMessages
impl PartialEq<ChannelMessages> for ChannelMessages
source§fn eq(&self, other: &ChannelMessages) -> bool
fn eq(&self, other: &ChannelMessages) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ChannelMessages
Auto Trait Implementations§
impl RefUnwindSafe for ChannelMessages
impl Send for ChannelMessages
impl Sync for ChannelMessages
impl Unpin for ChannelMessages
impl UnwindSafe for ChannelMessages
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