[][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 Clone for Scte35SegmentationDescriptor[src]

impl Debug for Scte35SegmentationDescriptor[src]

impl Default for Scte35SegmentationDescriptor[src]

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

impl PartialEq<Scte35SegmentationDescriptor> for Scte35SegmentationDescriptor[src]

impl Serialize for Scte35SegmentationDescriptor[src]

impl StructuralPartialEq for Scte35SegmentationDescriptor[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.