Class: Aws::MediaLive::Types::InputClippingSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::InputClippingSettings
- Defined in:
- gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb
Overview
Note:
When making an API call, you may pass InputClippingSettings data as a hash:
{
input_timecode_source: "ZEROBASED", # required, accepts ZEROBASED, EMBEDDED
start_timecode: {
timecode: "__string",
},
stop_timecode: {
last_frame_clipping_behavior: "EXCLUDE_LAST_FRAME", # accepts EXCLUDE_LAST_FRAME, INCLUDE_LAST_FRAME
timecode: "__string",
},
}
Settings to let you create a clip of the file input, in order to set up the input to ingest only a portion of the file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#input_timecode_source ⇒ String
The source of the timecodes in the source being clipped.
-
#start_timecode ⇒ Types::StartTimecode
Settings to identify the start of the clip.
-
#stop_timecode ⇒ Types::StopTimecode
Settings to identify the end of the clip.
Instance Attribute Details
#input_timecode_source ⇒ String
The source of the timecodes in the source being clipped.
10087 10088 10089 10090 10091 10092 10093 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 10087 class InputClippingSettings < Struct.new( :input_timecode_source, :start_timecode, :stop_timecode) SENSITIVE = [] include Aws::Structure end |
#start_timecode ⇒ Types::StartTimecode
Settings to identify the start of the clip.
10087 10088 10089 10090 10091 10092 10093 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 10087 class InputClippingSettings < Struct.new( :input_timecode_source, :start_timecode, :stop_timecode) SENSITIVE = [] include Aws::Structure end |
#stop_timecode ⇒ Types::StopTimecode
Settings to identify the end of the clip.
10087 10088 10089 10090 10091 10092 10093 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 10087 class InputClippingSettings < Struct.new( :input_timecode_source, :start_timecode, :stop_timecode) SENSITIVE = [] include Aws::Structure end |