#[non_exhaustive]pub struct UpdateChannelOutput {
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 UpdateChannelOutput
impl UpdateChannelOutput
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 UpdateChannelOutput
impl UpdateChannelOutput
sourcepub fn builder() -> UpdateChannelOutputBuilder
pub fn builder() -> UpdateChannelOutputBuilder
Creates a new builder-style object to manufacture UpdateChannelOutput
.
Trait Implementations§
source§impl Clone for UpdateChannelOutput
impl Clone for UpdateChannelOutput
source§fn clone(&self) -> UpdateChannelOutput
fn clone(&self) -> UpdateChannelOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateChannelOutput
impl Debug for UpdateChannelOutput
source§impl PartialEq for UpdateChannelOutput
impl PartialEq for UpdateChannelOutput
source§fn eq(&self, other: &UpdateChannelOutput) -> bool
fn eq(&self, other: &UpdateChannelOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateChannelOutput
impl RequestId for UpdateChannelOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.