Class: Aws::MediaLive::Types::FrameCaptureSettings

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

{
  capture_interval: 1,
  capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
}

Frame Capture Settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#capture_intervalInteger

The frequency at which to capture frames for inclusion in the output. May be specified in either seconds or milliseconds, as specified by captureIntervalUnits.

Returns:

  • (Integer)


7631
7632
7633
7634
7635
7636
# File 'lib/aws-sdk-medialive/types.rb', line 7631

class FrameCaptureSettings < Struct.new(
  :capture_interval,
  :capture_interval_units)
  SENSITIVE = []
  include Aws::Structure
end

#capture_interval_unitsString

Unit for the frame capture interval.

Returns:

  • (String)


7631
7632
7633
7634
7635
7636
# File 'lib/aws-sdk-medialive/types.rb', line 7631

class FrameCaptureSettings < Struct.new(
  :capture_interval,
  :capture_interval_units)
  SENSITIVE = []
  include Aws::Structure
end