Class: Aws::MediaLive::Types::Scte35SpliceInsertScheduleActionSettings

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 Scte35SpliceInsertScheduleActionSettings data as a hash:

{
  duration: 1,
  splice_event_id: 1, # required
}

Settings for a SCTE-35 splice_insert message.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#durationInteger

Optional, the duration for the splice_insert, in 90 KHz ticks. To convert seconds to ticks, multiple the seconds by 90,000. If you enter a duration, there is an expectation that the downstream system can read the duration and cue in at that time. If you do not enter a duration, the splice_insert will continue indefinitely and there is an expectation that you will enter a return_to_network to end the splice_insert at the appropriate time.

Returns:

  • (Integer)


16155
16156
16157
16158
16159
16160
# File 'lib/aws-sdk-medialive/types.rb', line 16155

class Scte35SpliceInsertScheduleActionSettings < Struct.new(
  :duration,
  :splice_event_id)
  SENSITIVE = []
  include Aws::Structure
end

#splice_event_idInteger

The splice_event_id for the SCTE-35 splice_insert, as defined in SCTE-35.

Returns:

  • (Integer)


16155
16156
16157
16158
16159
16160
# File 'lib/aws-sdk-medialive/types.rb', line 16155

class Scte35SpliceInsertScheduleActionSettings < Struct.new(
  :duration,
  :splice_event_id)
  SENSITIVE = []
  include Aws::Structure
end