All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.iot.iotjobs.model.JobExecutionSummary Maven / Gradle / Ivy

There is a newer version: 1.21.0
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 *
 * This file is generated.
 */

package software.amazon.awssdk.iot.iotjobs.model;

import software.amazon.awssdk.iot.Timestamp;

/**
 * Contains a subset of information about a job execution.
 *
 */
public class JobExecutionSummary {

    /**
     * The unique identifier you assigned to this job when it was created.
     *
     */
    public String jobId;


    /**
     * A number that identifies a job execution on a device.
     *
     */
    public Long executionNumber;


    /**
     * The version of the job execution. Job execution versions are incremented each time the AWS IoT Jobs service receives an update from a device.
     *
     */
    public Integer versionNumber;


    /**
     * The time when the job execution was last updated.
     *
     */
    public Timestamp lastUpdatedAt;


    /**
     * The time when the job execution was enqueued.
     *
     */
    public Timestamp queuedAt;


    /**
     * The time when the job execution started.
     *
     */
    public Timestamp startedAt;


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy