#[non_exhaustive]pub struct CreateChannelOutput {
pub arn: Option<String>,
pub channel_name: Option<String>,
pub channel_group_name: Option<String>,
pub created_at: Option<DateTime>,
pub modified_at: Option<DateTime>,
pub description: Option<String>,
pub ingest_endpoints: Option<Vec<IngestEndpoint>>,
pub tags: Option<HashMap<String, String>>,
/* private fields */
}
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.arn: Option<String>
The Amazon Resource Name (ARN) associated with the resource.
channel_name: Option<String>
The name that describes the channel. The name is the primary identifier for the channel, and must be unique for your account in the AWS Region and channel group.
channel_group_name: Option<String>
The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region.
created_at: Option<DateTime>
The date and time the channel was created.
modified_at: Option<DateTime>
The date and time the channel was modified.
description: Option<String>
The description for your channel.
ingest_endpoints: Option<Vec<IngestEndpoint>>
The list of ingest endpoints.
The comma-separated list of tag key:value pairs assigned to the channel.
Implementations§
source§impl CreateChannelOutput
impl CreateChannelOutput
sourcepub fn channel_name(&self) -> Option<&str>
pub fn channel_name(&self) -> Option<&str>
The name that describes the channel. The name is the primary identifier for the channel, and must be unique for your account in the AWS Region and channel group.
sourcepub fn channel_group_name(&self) -> Option<&str>
pub fn channel_group_name(&self) -> Option<&str>
The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The date and time the channel was created.
sourcepub fn modified_at(&self) -> Option<&DateTime>
pub fn modified_at(&self) -> Option<&DateTime>
The date and time the channel was modified.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for your channel.
sourcepub fn ingest_endpoints(&self) -> Option<&[IngestEndpoint]>
pub fn ingest_endpoints(&self) -> Option<&[IngestEndpoint]>
The list of ingest endpoints.
The comma-separated list of tag key:value pairs assigned to 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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
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>
None
if the service could not be reached.