Struct aws_sdk_codepipeline::types::Job
source · #[non_exhaustive]pub struct Job {
pub id: Option<String>,
pub data: Option<JobData>,
pub nonce: Option<String>,
pub account_id: Option<String>,
}
Expand description
Represents information about a job.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
The unique system-generated ID of the job.
data: Option<JobData>
Other data about a job.
nonce: Option<String>
A system-generated random number that CodePipeline uses to ensure that the job is being worked on by only one job worker. Use this number in an AcknowledgeJob
request.
account_id: Option<String>
The ID of the Amazon Web Services account to use when performing the job.
Implementations§
source§impl Job
impl Job
sourcepub fn nonce(&self) -> Option<&str>
pub fn nonce(&self) -> Option<&str>
A system-generated random number that CodePipeline uses to ensure that the job is being worked on by only one job worker. Use this number in an AcknowledgeJob
request.
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account to use when performing the job.
Trait Implementations§
impl StructuralPartialEq for Job
Auto Trait Implementations§
impl RefUnwindSafe for Job
impl Send for Job
impl Sync for Job
impl Unpin for Job
impl UnwindSafe for Job
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