[][src]Struct rusoto_medialive::Scte35SegmentationDescriptor

pub struct Scte35SegmentationDescriptor {
    pub delivery_restrictions: Option<Scte35DeliveryRestrictions>,
    pub segment_num: Option<i64>,
    pub segmentation_cancel_indicator: String,
    pub segmentation_duration: Option<i64>,
    pub segmentation_event_id: i64,
    pub segmentation_type_id: Option<i64>,
    pub segmentation_upid: Option<String>,
    pub segmentation_upid_type: Option<i64>,
    pub segments_expected: Option<i64>,
    pub sub_segment_num: Option<i64>,
    pub sub_segments_expected: Option<i64>,
}

Corresponds to SCTE-35 segmentation_descriptor.

Fields

delivery_restrictions: Option<Scte35DeliveryRestrictions>

Holds the four SCTE-35 delivery restriction parameters.

segment_num: Option<i64>

Corresponds to SCTE-35 segmentnum. A value that is valid for the specified segmentationtype_id.

segmentation_cancel_indicator: String

Corresponds to SCTE-35 segmentationeventcancel_indicator.

segmentation_duration: Option<i64>

Corresponds to SCTE-35 segmentationduration. Optional. The duration for the timesignal, in 90 KHz ticks. To convert seconds to ticks, multiple the seconds by 90,000. Enter time in 90 KHz clock ticks. If you do not enter a duration, the time_signal will continue until you insert a cancellation message.

segmentation_event_id: i64

Corresponds to SCTE-35 segmentationeventid.

segmentation_type_id: Option<i64>

Corresponds to SCTE-35 segmentationtypeid. One of the segmentationtypeid values listed in the SCTE-35 specification. On the console, enter the ID in decimal (for example, "52"). In the CLI, API, or an SDK, enter the ID in hex (for example, "0x34") or decimal (for example, "52").

segmentation_upid: Option<String>

Corresponds to SCTE-35 segmentationupid. Enter a string containing the hexadecimal representation of the characters that make up the SCTE-35 segmentationupid value. Must contain an even number of hex characters. Do not include spaces between each hex pair. For example, the ASCII "ADS Information" becomes hex "41445320496e666f726d6174696f6e.

segmentation_upid_type: Option<i64>

Corresponds to SCTE-35 segmentationupidtype. On the console, enter one of the types listed in the SCTE-35 specification, converted to a decimal. For example, "0x0C" hex from the specification is "12" in decimal. In the CLI, API, or an SDK, enter one of the types listed in the SCTE-35 specification, in either hex (for example, "0x0C" ) or in decimal (for example, "12").

segments_expected: Option<i64>

Corresponds to SCTE-35 segmentsexpected. A value that is valid for the specified segmentationtype_id.

sub_segment_num: Option<i64>

Corresponds to SCTE-35 subsegmentnum. A value that is valid for the specified segmentationtypeid.

sub_segments_expected: Option<i64>

Corresponds to SCTE-35 subsegmentsexpected. A value that is valid for the specified segmentationtypeid.

Trait Implementations

impl PartialEq<Scte35SegmentationDescriptor> for Scte35SegmentationDescriptor[src]

impl Default for Scte35SegmentationDescriptor[src]

impl Clone for Scte35SegmentationDescriptor[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Scte35SegmentationDescriptor[src]

impl Serialize for Scte35SegmentationDescriptor[src]

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

Auto Trait Implementations

impl Send for Scte35SegmentationDescriptor

impl Sync for Scte35SegmentationDescriptor

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self