pub struct GetThirdPartyJobDetailsInput {
pub client_token: String,
pub job_id: String,
}
Expand description
Represents the input of a GetThirdPartyJobDetails
action.
Fields§
§client_token: String
The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
job_id: String
The unique system-generated ID used for identifying the job.
Trait Implementations§
Source§impl Clone for GetThirdPartyJobDetailsInput
impl Clone for GetThirdPartyJobDetailsInput
Source§fn clone(&self) -> GetThirdPartyJobDetailsInput
fn clone(&self) -> GetThirdPartyJobDetailsInput
Returns a copy 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 Debug for GetThirdPartyJobDetailsInput
impl Debug for GetThirdPartyJobDetailsInput
Source§impl Default for GetThirdPartyJobDetailsInput
impl Default for GetThirdPartyJobDetailsInput
Source§fn default() -> GetThirdPartyJobDetailsInput
fn default() -> GetThirdPartyJobDetailsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetThirdPartyJobDetailsInput
impl PartialEq for GetThirdPartyJobDetailsInput
Source§fn eq(&self, other: &GetThirdPartyJobDetailsInput) -> bool
fn eq(&self, other: &GetThirdPartyJobDetailsInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetThirdPartyJobDetailsInput
Auto Trait Implementations§
impl Freeze for GetThirdPartyJobDetailsInput
impl RefUnwindSafe for GetThirdPartyJobDetailsInput
impl Send for GetThirdPartyJobDetailsInput
impl Sync for GetThirdPartyJobDetailsInput
impl Unpin for GetThirdPartyJobDetailsInput
impl UnwindSafe for GetThirdPartyJobDetailsInput
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