pub struct ListJobExecutionsForJobRequest {
pub job_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub status: Option<String>,
}Fields§
§job_id: StringThe unique identifier you assigned to this job when it was created.
max_results: Option<i64>The maximum number of results to be returned per request.
next_token: Option<String>The token to retrieve the next set of results.
status: Option<String>The status of the job.
Trait Implementations§
Source§impl Clone for ListJobExecutionsForJobRequest
impl Clone for ListJobExecutionsForJobRequest
Source§fn clone(&self) -> ListJobExecutionsForJobRequest
fn clone(&self) -> ListJobExecutionsForJobRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for ListJobExecutionsForJobRequest
impl Default for ListJobExecutionsForJobRequest
Source§fn default() -> ListJobExecutionsForJobRequest
fn default() -> ListJobExecutionsForJobRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListJobExecutionsForJobRequest
impl PartialEq for ListJobExecutionsForJobRequest
Source§fn eq(&self, other: &ListJobExecutionsForJobRequest) -> bool
fn eq(&self, other: &ListJobExecutionsForJobRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListJobExecutionsForJobRequest
Auto Trait Implementations§
impl Freeze for ListJobExecutionsForJobRequest
impl RefUnwindSafe for ListJobExecutionsForJobRequest
impl Send for ListJobExecutionsForJobRequest
impl Sync for ListJobExecutionsForJobRequest
impl Unpin for ListJobExecutionsForJobRequest
impl UnwindSafe for ListJobExecutionsForJobRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more