#[non_exhaustive]pub struct UpdateChannelOutput {
pub arn: Option<String>,
pub channel_name: Option<String>,
pub channel_state: Option<ChannelState>,
pub creation_time: Option<DateTime>,
pub filler_slate: Option<SlateSource>,
pub last_modified_time: Option<DateTime>,
pub outputs: Option<Vec<ResponseOutputItem>>,
pub playback_mode: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub tier: Option<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 channel.
channel_name: Option<String>The name of the channel.
channel_state: Option<ChannelState>Returns the state whether the channel is running or not.
creation_time: Option<DateTime>The timestamp of when the channel was created.
filler_slate: Option<SlateSource>The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses the LINEAR PlaybackMode. MediaTailor doesn't support filler slate for channels using the LOOP PlaybackMode.
last_modified_time: Option<DateTime>The timestamp that indicates when the channel was last modified.
outputs: Option<Vec<ResponseOutputItem>>The channel's output properties.
playback_mode: Option<String>The type of playback mode for this channel.
LINEAR - Programs play back-to-back only once.
LOOP - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.
The tags to assign to the channel. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources.
tier: Option<String>The tier associated with this Channel.
Implementations§
source§impl UpdateChannelOutput
impl UpdateChannelOutput
sourcepub fn channel_name(&self) -> Option<&str>
pub fn channel_name(&self) -> Option<&str>
The name of the channel.
sourcepub fn channel_state(&self) -> Option<&ChannelState>
pub fn channel_state(&self) -> Option<&ChannelState>
Returns the state whether the channel is running or not.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The timestamp of when the channel was created.
sourcepub fn filler_slate(&self) -> Option<&SlateSource>
pub fn filler_slate(&self) -> Option<&SlateSource>
The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses the LINEAR PlaybackMode. MediaTailor doesn't support filler slate for channels using the LOOP PlaybackMode.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The timestamp that indicates when the channel was last modified.
sourcepub fn outputs(&self) -> Option<&[ResponseOutputItem]>
pub fn outputs(&self) -> Option<&[ResponseOutputItem]>
The channel's output properties.
sourcepub fn playback_mode(&self) -> Option<&str>
pub fn playback_mode(&self) -> Option<&str>
The type of playback mode for this channel.
LINEAR - Programs play back-to-back only once.
LOOP - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.
The tags to assign to the channel. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources.
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.