Struct rusoto_glue::GetJobRunRequest[][src]

pub struct GetJobRunRequest {
    pub job_name: String,
    pub predecessors_included: Option<bool>,
    pub run_id: String,
}

Fields

Name of the job being run.

True if a list of predecessor runs should be returned.

The ID of the job run.

Trait Implementations

impl Default for GetJobRunRequest
[src]

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

impl Debug for GetJobRunRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetJobRunRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetJobRunRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations