UpdateJobRequest
public struct UpdateJobRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Allows you to create criteria to abort a job.
Declaration
Swift
public let abortConfig: AbortConfig?
-
A short text description of the job.
Declaration
Swift
public let description: String?
-
Allows you to create a staged rollout of the job.
Declaration
Swift
public let jobExecutionsRolloutConfig: JobExecutionsRolloutConfig?
-
The ID of the job to be updated.
Declaration
Swift
public let jobId: String
-
Configuration information for pre-signed S3 URLs.
Declaration
Swift
public let presignedUrlConfig: PresignedUrlConfig?
-
Specifies the amount of time each device has to finish its execution of the job. The timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the time expires, it will be automatically set to TIMED_OUT.
Declaration
Swift
public let timeoutConfig: TimeoutConfig?
-
Undocumented
Declaration
Swift
public init(abortConfig: AbortConfig? = nil, description: String? = nil, jobExecutionsRolloutConfig: JobExecutionsRolloutConfig? = nil, jobId: String, presignedUrlConfig: PresignedUrlConfig? = nil, timeoutConfig: TimeoutConfig? = nil)
-
Declaration
Swift
public func validate(name: String) throws