UpdateJobTemplateRequest
public struct UpdateJobTemplateRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide.
Declaration
Swift
public let accelerationSettings: AccelerationSettings?
-
The new category for the job template, if you are changing it.
Declaration
Swift
public let category: String?
-
The new description for the job template, if you are changing it.
Declaration
Swift
public let description: String?
-
Optional list of hop destinations.
Declaration
Swift
public let hopDestinations: [HopDestination]?
-
The name of the job template you are modifying
Declaration
Swift
public let name: String
-
Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don’t specify a priority, the service uses the default value 0.
Declaration
Swift
public let priority: Int?
-
The new queue for the job template, if you are changing it.
Declaration
Swift
public let queue: String?
-
JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.
Declaration
Swift
public let settings: JobTemplateSettings?
-
Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.
Declaration
Swift
public let statusUpdateInterval: StatusUpdateInterval?
-
init(accelerationSettings:category:description:hopDestinations:name:priority:queue:settings:statusUpdateInterval:)
Undocumented
Declaration
Swift
public init(accelerationSettings: AccelerationSettings? = nil, category: String? = nil, description: String? = nil, hopDestinations: [HopDestination]? = nil, name: String, priority: Int? = nil, queue: String? = nil, settings: JobTemplateSettings? = nil, statusUpdateInterval: StatusUpdateInterval? = nil)
-
Declaration
Swift
public func validate(name: String) throws