[][src]Struct rusoto_medialive::DeleteChannelResponse

pub struct DeleteChannelResponse {
    pub arn: Option<String>,
    pub destinations: Option<Vec<OutputDestination>>,
    pub egress_endpoints: Option<Vec<ChannelEgressEndpoint>>,
    pub encoder_settings: Option<EncoderSettings>,
    pub id: Option<String>,
    pub input_attachments: Option<Vec<InputAttachment>>,
    pub input_specification: Option<InputSpecification>,
    pub log_level: Option<String>,
    pub name: Option<String>,
    pub pipelines_running_count: Option<i64>,
    pub role_arn: Option<String>,
    pub state: Option<String>,
}

Placeholder documentation for DeleteChannelResponse

Fields

The unique arn of the channel.

A list of destinations of the channel. For UDP outputs, there is one destination per output. For other types (HLS, for example), there is one destination per packager.

The endpoints where outgoing connections initiate from

The unique id of the channel.

List of input attachments for channel.

The log level being written to CloudWatch Logs.

The name of the channel. (user-mutable)

The number of currently healthy pipelines.

The Amazon Resource Name (ARN) of the role assumed when running the Channel.

Trait Implementations

impl Clone for DeleteChannelResponse
[src]

Performs copy-assignment from source. Read more

impl Default for DeleteChannelResponse
[src]

impl PartialEq<DeleteChannelResponse> for DeleteChannelResponse
[src]

impl Debug for DeleteChannelResponse
[src]

impl<'de> Deserialize<'de> for DeleteChannelResponse
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T