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