Class: Aws::MediaLive::Types::PipelineLockingSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::PipelineLockingSettings
- Defined in:
- gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb
Overview
Pipeline Locking Settings
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_epoch ⇒ String
Optional.
-
#pipeline_locking_method ⇒ String
The method to use to lock the video frames in the pipelines.
Instance Attribute Details
#custom_epoch ⇒ String
Optional. Only applies to CMAF Ingest Output Group and MediaPackage V2 Output Group Only. Enter a value here to use a custom epoch, instead of the standard epoch (which started at 1970-01-01T00:00:00 UTC). Specify the start time of the custom epoch, in YYYY-MM-DDTHH:MM:SS in UTC. The time must be 2000-01-01T00:00:00 or later. Always set the MM:SS portion to 00:00.
10704 10705 10706 10707 10708 10709 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 10704 class PipelineLockingSettings < Struct.new( :pipeline_locking_method, :custom_epoch) SENSITIVE = [] include Aws::Structure end |
#pipeline_locking_method ⇒ String
The method to use to lock the video frames in the pipelines. sourceTimecode (default): Use the timecode in the source. videoAlignment: Lock frames that the encoder identifies as having matching content. If videoAlignment is selected, existing timecodes will not be used for any locking decisions.
10704 10705 10706 10707 10708 10709 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 10704 class PipelineLockingSettings < Struct.new( :pipeline_locking_method, :custom_epoch) SENSITIVE = [] include Aws::Structure end |