JobSettings

public struct JobSettings : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • When specified, this offset (in milliseconds) is added to the input Ad Avail PTS time.

    Declaration

    Swift

    public let adAvailOffset: Int?
  • Settings for ad avail blanking. Video can be blanked or overlaid with an image, and audio muted during SCTE-35 triggered ad avails.

    Declaration

    Swift

    public let availBlanking: AvailBlanking?
  • Settings for Event Signaling And Messaging (ESAM).

    Declaration

    Swift

    public let esam: EsamSettings?
  • Use Inputs (inputs) to define source file used in the transcode job. There can be multiple inputs add in a job. These inputs will be concantenated together to create the output.

    Declaration

    Swift

    public let inputs: [Input]?
  • Overlay motion graphics on top of your video. The motion graphics that you specify here appear on all outputs in all output groups.

    Declaration

    Swift

    public let motionImageInserter: MotionImageInserter?
  • Settings for your Nielsen configuration. If you don’t do Nielsen measurement and analytics, ignore these settings. When you enable Nielsen configuration (nielsenConfiguration), MediaConvert enables PCM to ID3 tagging for all outputs in the job. To enable Nielsen configuration programmatically, include an instance of nielsenConfiguration in your JSON job specification. Even if you don’t include any children of nielsenConfiguration, you still enable the setting.

    Declaration

    Swift

    public let nielsenConfiguration: NielsenConfiguration?
  • (OutputGroups) contains one group of settings for each set of outputs that share a common package type. All unpackaged files (MPEG-4, MPEG-2 TS, Quicktime, MXF, and no container) are grouped in a single output group as well. Required in (OutputGroups) is a group of settings that apply to the whole group. This required object depends on the value you set for (Type) under (OutputGroups)>(OutputGroupSettings). Type, settings object pairs are as follows. * FILE_GROUP_SETTINGS, FileGroupSettings * HLS_GROUP_SETTINGS, HlsGroupSettings * DASH_ISO_GROUP_SETTINGS, DashIsoGroupSettings * MS_SMOOTH_GROUP_SETTINGS, MsSmoothGroupSettings * CMAF_GROUP_SETTINGS, CmafGroupSettings

    Declaration

    Swift

    public let outputGroups: [OutputGroup]?
  • Contains settings used to acquire and adjust timecode information from inputs.

    Declaration

    Swift

    public let timecodeConfig: TimecodeConfig?
  • Enable Timed metadata insertion (TimedMetadataInsertion) to include ID3 tags in your job. To include timed metadata, you must enable it here, enable it in each output container, and specify tags and timecodes in ID3 insertion (Id3Insertion) objects.

    Declaration

    Swift

    public let timedMetadataInsertion: TimedMetadataInsertion?
  • Undocumented

    Declaration

    Swift

    public init(adAvailOffset: Int? = nil, availBlanking: AvailBlanking? = nil, esam: EsamSettings? = nil, inputs: [Input]? = nil, motionImageInserter: MotionImageInserter? = nil, nielsenConfiguration: NielsenConfiguration? = nil, outputGroups: [OutputGroup]? = nil, timecodeConfig: TimecodeConfig? = nil, timedMetadataInsertion: TimedMetadataInsertion? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws