Class: Aws::MediaLive::Types::StopTimecode
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::StopTimecode
- Defined in:
- gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb
Overview
Settings to identify the end of the clip.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#last_frame_clipping_behavior ⇒ String
If you specify a StopTimecode in an input (in order to clip the file), you can specify if you want the clip to exclude (the default) or include the frame specified by the timecode.
-
#timecode ⇒ String
The timecode for the frame where you want to stop the clip.
Instance Attribute Details
#last_frame_clipping_behavior ⇒ String
If you specify a StopTimecode in an input (in order to clip the file), you can specify if you want the clip to exclude (the default) or include the frame specified by the timecode.
12398 12399 12400 12401 12402 12403 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 12398 class StopTimecode < Struct.new( :last_frame_clipping_behavior, :timecode) SENSITIVE = [] include Aws::Structure end |
#timecode ⇒ String
The timecode for the frame where you want to stop the clip. Optional; if not specified, the clip continues to the end of the file. Enter the timecode as HH:MM:SS:FF or HH:MM:SS;FF.
12398 12399 12400 12401 12402 12403 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 12398 class StopTimecode < Struct.new( :last_frame_clipping_behavior, :timecode) SENSITIVE = [] include Aws::Structure end |