Struct rusoto_snowball::ListClusterJobsResult[][src]

pub struct ListClusterJobsResult {
    pub job_list_entries: Option<Vec<JobListEntry>>,
    pub next_token: Option<String>,
}

Fields

Each JobListEntry object contains a job's state, a job's ID, and a value that indicates whether the job is a job part, in the case of export jobs.

HTTP requests are stateless. If you use the automatically generated NextToken value in your next ListClusterJobsResult call, your list of returned jobs will start from this point in the array.

Trait Implementations

impl Default for ListClusterJobsResult
[src]

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

impl Debug for ListClusterJobsResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ListClusterJobsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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