Struct rusoto_glue::BatchStopJobRunError[][src]

pub struct BatchStopJobRunError {
    pub error_detail: Option<ErrorDetail>,
    pub job_name: Option<String>,
    pub job_run_id: Option<String>,
}

Records an error that occurred when attempting to stop a specified JobRun.

Fields

Specifies details about the error that was encountered.

The name of the Job in question.

The JobRunId of the JobRun in question.

Trait Implementations

impl Default for BatchStopJobRunError
[src]

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

impl Debug for BatchStopJobRunError
[src]

Formats the value using the given formatter. Read more

impl Clone for BatchStopJobRunError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for BatchStopJobRunError
[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