TextTranslationJobFilter

public struct TextTranslationJobFilter : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Filters the list of jobs by name.

    Declaration

    Swift

    public let jobName: String?
  • Filters the list of jobs based by job status.

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    public let submittedBeforeTime: TimeStamp?
  • Undocumented

    Declaration

    Swift

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

    Swift

    public func validate(name: String) throws