JobSummary

public struct JobSummary : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The array properties of the job, if it is an array job.

    Declaration

    Swift

    public let arrayProperties: ArrayPropertiesSummary?
  • An object representing the details of the container that is associated with the job.

    Declaration

    Swift

    public let container: ContainerSummary?
  • The Unix timestamp for when the job was created. For non-array jobs and parent array jobs, this is when the job entered the SUBMITTED state (at the time SubmitJob was called). For array child jobs, this is when the child job was spawned by its parent and entered the PENDING state.

    Declaration

    Swift

    public let createdAt: Int64?
  • The ID of the job.

    Declaration

    Swift

    public let jobId: String
  • The name of the job.

    Declaration

    Swift

    public let jobName: String
  • The node properties for a single node in a job summary list.

    Declaration

    Swift

    public let nodeProperties: NodePropertiesSummary?
  • The Unix timestamp for when the job was started (when the job transitioned from the STARTING state to the RUNNING state).

    Declaration

    Swift

    public let startedAt: Int64?
  • The current status for the job.

    Declaration

    Swift

    public let status: JobStatus?
  • A short, human-readable string to provide additional details about the current status of the job.

    Declaration

    Swift

    public let statusReason: String?
  • The Unix timestamp for when the job was stopped (when the job transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED).

    Declaration

    Swift

    public let stoppedAt: Int64?
  • Undocumented

    Declaration

    Swift

    public init(arrayProperties: ArrayPropertiesSummary? = nil, container: ContainerSummary? = nil, createdAt: Int64? = nil, jobId: String, jobName: String, nodeProperties: NodePropertiesSummary? = nil, startedAt: Int64? = nil, status: JobStatus? = nil, statusReason: String? = nil, stoppedAt: Int64? = nil)