Struct rusoto_glue::JobBookmarkEntry [] [src]

pub struct JobBookmarkEntry {
    pub attempt: Option<i64>,
    pub job_bookmark: Option<String>,
    pub job_name: Option<String>,
    pub run: Option<i64>,
    pub version: Option<i64>,
}

Defines a point which a job can resume processing.

Fields

The attempt ID number.

The bookmark itself.

Name of the job in question.

The run ID number.

Version of the job.

Trait Implementations

impl Default for JobBookmarkEntry
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for JobBookmarkEntry
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for JobBookmarkEntry
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations