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