Class: Aws::MediaLive::Types::Scte35TimeSignalScheduleActionSettings

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-medialive/types.rb

Overview

Note:

When making an API call, you may pass Scte35TimeSignalScheduleActionSettings data as a hash:

{
  scte_35_descriptors: [ # required
    {
      scte_35_descriptor_settings: { # required
        segmentation_descriptor_scte_35_descriptor_settings: { # required
          delivery_restrictions: {
            archive_allowed_flag: "ARCHIVE_NOT_ALLOWED", # required, accepts ARCHIVE_NOT_ALLOWED, ARCHIVE_ALLOWED
            device_restrictions: "NONE", # required, accepts NONE, RESTRICT_GROUP0, RESTRICT_GROUP1, RESTRICT_GROUP2
            no_regional_blackout_flag: "REGIONAL_BLACKOUT", # required, accepts REGIONAL_BLACKOUT, NO_REGIONAL_BLACKOUT
            web_delivery_allowed_flag: "WEB_DELIVERY_NOT_ALLOWED", # required, accepts WEB_DELIVERY_NOT_ALLOWED, WEB_DELIVERY_ALLOWED
          },
          segment_num: 1,
          segmentation_cancel_indicator: "SEGMENTATION_EVENT_NOT_CANCELED", # required, accepts SEGMENTATION_EVENT_NOT_CANCELED, SEGMENTATION_EVENT_CANCELED
          segmentation_duration: 1,
          segmentation_event_id: 1, # required
          segmentation_type_id: 1,
          segmentation_upid: "__string",
          segmentation_upid_type: 1,
          segments_expected: 1,
          sub_segment_num: 1,
          sub_segments_expected: 1,
        },
      },
    },
  ],
}

Settings for a SCTE-35 time_signal.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#scte_35_descriptorsArray<Types::Scte35Descriptor>

The list of SCTE-35 descriptors accompanying the SCTE-35 time_signal.

Returns:



16238
16239
16240
16241
16242
# File 'lib/aws-sdk-medialive/types.rb', line 16238

class Scte35TimeSignalScheduleActionSettings < Struct.new(
  :scte_35_descriptors)
  SENSITIVE = []
  include Aws::Structure
end