JobDescriptor
public struct JobDescriptor : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Indicates whether confirmation is required before Amazon S3 begins running the specified job. Confirmation is required only for jobs created through the Amazon S3 console.
Declaration
Swift
public let confirmationRequired: Bool?
-
A timestamp indicating when this job was created.
Declaration
Swift
public let creationTime: TimeStamp?
-
The description for this job, if one was provided in this job’s Create Job request.
Declaration
Swift
public let description: String?
-
If the specified job failed, this field contains information describing the failure.
Declaration
Swift
public let failureReasons: [JobFailure]?
-
The Amazon Resource Name (ARN) for this job.
Declaration
Swift
public let jobArn: String?
-
The ID for the specified job.
Declaration
Swift
public let jobId: String?
-
The configuration information for the specified job’s manifest object.
Declaration
Swift
public let manifest: JobManifest?
-
The operation that the specified job is configured to execute on the objects listed in the manifest.
Declaration
Swift
public let operation: JobOperation?
-
The priority of the specified job.
Declaration
Swift
public let priority: Int?
-
Describes the total number of tasks that the specified job has executed, the number of tasks that succeeded, and the number of tasks that failed.
Declaration
Swift
public let progressSummary: JobProgressSummary?
-
Contains the configuration information for the job-completion report if you requested one in the Create Job request.
Declaration
Swift
public let report: JobReport?
-
The Amazon Resource Name (ARN) for the AWS Identity and Access Management (IAM) role assigned to execute the tasks for this job.
Declaration
Swift
public let roleArn: String?
-
The current status of the specified job.
Declaration
Swift
public let status: JobStatus?
-
Undocumented
Declaration
Swift
public let statusUpdateReason: String?
-
The reason why the specified job was suspended. A job is only suspended if you create it through the Amazon S3 console. When you create the job, it enters the Suspended state to await confirmation before running. After you confirm the job, it automatically exits the Suspended state.
Declaration
Swift
public let suspendedCause: String?
-
The timestamp when this job was suspended, if it has been suspended.
Declaration
Swift
public let suspendedDate: TimeStamp?
-
A timestamp indicating when this job terminated. A job’s termination date is the date and time when it succeeded, failed, or was canceled.
Declaration
Swift
public let terminationDate: TimeStamp?
-
init(confirmationRequired:creationTime:description:failureReasons:jobArn:jobId:manifest:operation:priority:progressSummary:report:roleArn:status:statusUpdateReason:suspendedCause:suspendedDate:terminationDate:)
Undocumented
Declaration
Swift
public init(confirmationRequired: Bool? = nil, creationTime: TimeStamp? = nil, description: String? = nil, failureReasons: [JobFailure]? = nil, jobArn: String? = nil, jobId: String? = nil, manifest: JobManifest? = nil, operation: JobOperation? = nil, priority: Int? = nil, progressSummary: JobProgressSummary? = nil, report: JobReport? = nil, roleArn: String? = nil, status: JobStatus? = nil, statusUpdateReason: String? = nil, suspendedCause: String? = nil, suspendedDate: TimeStamp? = nil, terminationDate: TimeStamp? = nil)