#[non_exhaustive]pub struct CreateChannelOutput {
pub channel_name: Option<String>,
pub channel_arn: Option<String>,
pub retention_period: Option<RetentionPeriod>,
/* private fields */
}
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.channel_name: Option<String>
The name of the channel.
channel_arn: Option<String>
The ARN of the channel.
retention_period: Option<RetentionPeriod>
How long, in days, message data is kept for the channel.
Implementations§
source§impl CreateChannelOutput
impl CreateChannelOutput
sourcepub fn channel_name(&self) -> Option<&str>
pub fn channel_name(&self) -> Option<&str>
The name of the channel.
sourcepub fn channel_arn(&self) -> Option<&str>
pub fn channel_arn(&self) -> Option<&str>
The ARN of the channel.
sourcepub fn retention_period(&self) -> Option<&RetentionPeriod>
pub fn retention_period(&self) -> Option<&RetentionPeriod>
How long, in days, message data is kept for the channel.
source§impl CreateChannelOutput
impl CreateChannelOutput
sourcepub fn builder() -> CreateChannelOutputBuilder
pub fn builder() -> CreateChannelOutputBuilder
Creates a new builder-style object to manufacture CreateChannelOutput
.
Trait Implementations§
source§impl Clone for CreateChannelOutput
impl Clone for CreateChannelOutput
source§fn clone(&self) -> CreateChannelOutput
fn clone(&self) -> CreateChannelOutput
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 CreateChannelOutput
impl Debug for CreateChannelOutput
source§impl PartialEq for CreateChannelOutput
impl PartialEq for CreateChannelOutput
source§fn eq(&self, other: &CreateChannelOutput) -> bool
fn eq(&self, other: &CreateChannelOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateChannelOutput
impl RequestId for CreateChannelOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateChannelOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateChannelOutput
impl Send for CreateChannelOutput
impl Sync for CreateChannelOutput
impl Unpin for CreateChannelOutput
impl UnwindSafe for CreateChannelOutput
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>
Creates a shared type from an unshared type.