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 ==
.impl StructuralPartialEq for ChannelMessages
Auto Trait Implementations§
impl Freeze for ChannelMessages
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
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>
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>
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 more