Struct aws_sdk_amplify::types::builders::JobBuilder
source · #[non_exhaustive]pub struct JobBuilder { /* private fields */ }Expand description
A builder for Job.
Implementations§
source§impl JobBuilder
impl JobBuilder
sourcepub fn summary(self, input: JobSummary) -> Self
pub fn summary(self, input: JobSummary) -> Self
Describes the summary for an execution job for an Amplify app.
This field is required.sourcepub fn set_summary(self, input: Option<JobSummary>) -> Self
pub fn set_summary(self, input: Option<JobSummary>) -> Self
Describes the summary for an execution job for an Amplify app.
sourcepub fn get_summary(&self) -> &Option<JobSummary>
pub fn get_summary(&self) -> &Option<JobSummary>
Describes the summary for an execution job for an Amplify app.
sourcepub fn steps(self, input: Step) -> Self
pub fn steps(self, input: Step) -> Self
Appends an item to steps.
To override the contents of this collection use set_steps.
The execution steps for an execution job, for an Amplify app.
sourcepub fn set_steps(self, input: Option<Vec<Step>>) -> Self
pub fn set_steps(self, input: Option<Vec<Step>>) -> Self
The execution steps for an execution job, for an Amplify app.
Trait Implementations§
source§impl Clone for JobBuilder
impl Clone for JobBuilder
source§fn clone(&self) -> JobBuilder
fn clone(&self) -> JobBuilder
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 JobBuilder
impl Debug for JobBuilder
source§impl Default for JobBuilder
impl Default for JobBuilder
source§fn default() -> JobBuilder
fn default() -> JobBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for JobBuilder
impl PartialEq for JobBuilder
impl StructuralPartialEq for JobBuilder
Auto Trait Implementations§
impl Freeze for JobBuilder
impl RefUnwindSafe for JobBuilder
impl Send for JobBuilder
impl Sync for JobBuilder
impl Unpin for JobBuilder
impl UnwindSafe for JobBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.