ComprehendMedicalAsyncJobFilter

public struct ComprehendMedicalAsyncJobFilter : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Filters on the name of the job.

    Declaration

    Swift

    public let jobName: String?
  • Filters the list of jobs based on job status. Returns only jobs with the specified status.

    Declaration

    Swift

    public let jobStatus: JobStatus?
  • Filters the list of jobs based on the time that the job was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in descending order, newest to oldest.

    Declaration

    Swift

    public let submitTimeAfter: TimeStamp?
  • Filters the list of jobs based on the time that the job was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.

    Declaration

    Swift

    public let submitTimeBefore: TimeStamp?
  • Undocumented

    Declaration

    Swift

    public init(jobName: String? = nil, jobStatus: JobStatus? = nil, submitTimeAfter: TimeStamp? = nil, submitTimeBefore: TimeStamp? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws