Struct aws_sdk_codepipeline::model::Job [−][src]
#[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 AWS 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 AWS account to use when performing the job.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Job
impl UnwindSafe for Job
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more