Struct rusoto_glue::BatchStopJobRunResponse[][src]

pub struct BatchStopJobRunResponse {
    pub errors: Option<Vec<BatchStopJobRunError>>,
    pub successful_submissions: Option<Vec<BatchStopJobRunSuccessfulSubmission>>,
}

Fields

A list of the errors that were encountered in tryng to stop JobRuns, including the JobRunId for which each error was encountered and details about the error.

A list of the JobRuns that were successfully submitted for stopping.

Trait Implementations

impl Default for BatchStopJobRunResponse
[src]

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

impl Debug for BatchStopJobRunResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for BatchStopJobRunResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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