ListJobsRequest

public struct ListJobsRequest : AWSShape
extension IoT.ListJobsRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The maximum number of results to return per request.

    Declaration

    Swift

    public let maxResults: Int?
  • The token to retrieve the next set of results.

    Declaration

    Swift

    public let nextToken: String?
  • An optional filter that lets you search for jobs that have the specified status.

    Declaration

    Swift

    public let status: JobStatus?
  • Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group.

    Declaration

    Swift

    public let targetSelection: TargetSelection?
  • A filter that limits the returned jobs to those for the specified group.

    Declaration

    Swift

    public let thingGroupId: String?
  • A filter that limits the returned jobs to those for the specified group.

    Declaration

    Swift

    public let thingGroupName: String?
  • Undocumented

    Declaration

    Swift

    public init(maxResults: Int? = nil, nextToken: String? = nil, status: JobStatus? = nil, targetSelection: TargetSelection? = nil, thingGroupId: String? = nil, thingGroupName: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws