pub struct Channel {
pub arn: Option<String>,
pub description: Option<String>,
pub hls_ingest: Option<HlsIngest>,
pub id: Option<String>,
pub tags: Option<HashMap<String, String>>,
}Expand description
A Channel resource configuration.
Fields§
§arn: Option<String>The Amazon Resource Name (ARN) assigned to the Channel.
description: Option<String>A short text description of the Channel.
hls_ingest: Option<HlsIngest>§id: Option<String>The ID of the Channel.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Channel
impl<'de> Deserialize<'de> for Channel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Channel
Auto Trait Implementations§
impl Freeze for Channel
impl RefUnwindSafe for Channel
impl Send for Channel
impl Sync for Channel
impl Unpin for Channel
impl UnwindSafe for Channel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more