#[non_exhaustive]pub struct UpdateChannelGroupOutput {
pub channel_group_name: String,
pub arn: String,
pub egress_domain: String,
pub created_at: DateTime,
pub modified_at: DateTime,
pub description: Option<String>,
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.channel_group_name: 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.
arn: String
The Amazon Resource Name (ARN) associated with the resource.
egress_domain: String
The output domain where the source stream is sent. Integrate the domain with a downstream CDN (such as Amazon CloudFront) or playback device.
created_at: DateTime
The date and time the channel group was created.
modified_at: DateTime
The date and time the channel group was modified.
description: Option<String>
The description for your channel group.
The comma-separated list of tag key:value pairs assigned to the channel group.
Implementations§
source§impl UpdateChannelGroupOutput
impl UpdateChannelGroupOutput
sourcepub fn channel_group_name(&self) -> &str
pub fn channel_group_name(&self) -> &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 egress_domain(&self) -> &str
pub fn egress_domain(&self) -> &str
The output domain where the source stream is sent. Integrate the domain with a downstream CDN (such as Amazon CloudFront) or playback device.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
The date and time the channel group was created.
sourcepub fn modified_at(&self) -> &DateTime
pub fn modified_at(&self) -> &DateTime
The date and time the channel group was modified.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for your channel group.
The comma-separated list of tag key:value pairs assigned to the channel group.
source§impl UpdateChannelGroupOutput
impl UpdateChannelGroupOutput
sourcepub fn builder() -> UpdateChannelGroupOutputBuilder
pub fn builder() -> UpdateChannelGroupOutputBuilder
Creates a new builder-style object to manufacture UpdateChannelGroupOutput
.
Trait Implementations§
source§impl Clone for UpdateChannelGroupOutput
impl Clone for UpdateChannelGroupOutput
source§fn clone(&self) -> UpdateChannelGroupOutput
fn clone(&self) -> UpdateChannelGroupOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateChannelGroupOutput
impl Debug for UpdateChannelGroupOutput
source§impl PartialEq for UpdateChannelGroupOutput
impl PartialEq for UpdateChannelGroupOutput
source§fn eq(&self, other: &UpdateChannelGroupOutput) -> bool
fn eq(&self, other: &UpdateChannelGroupOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateChannelGroupOutput
impl RequestId for UpdateChannelGroupOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.