Struct aws_sdk_s3control::operation::update_job_status::builders::UpdateJobStatusInputBuilder
source · #[non_exhaustive]pub struct UpdateJobStatusInputBuilder { /* private fields */ }Expand description
A builder for UpdateJobStatusInput.
Implementations§
source§impl UpdateJobStatusInputBuilder
impl UpdateJobStatusInputBuilder
sourcepub fn account_id(self, input: impl Into<String>) -> Self
pub fn account_id(self, input: impl Into<String>) -> Self
The Amazon Web Services account ID associated with the S3 Batch Operations job.
This field is required.sourcepub fn set_account_id(self, input: Option<String>) -> Self
pub fn set_account_id(self, input: Option<String>) -> Self
The Amazon Web Services account ID associated with the S3 Batch Operations job.
sourcepub fn get_account_id(&self) -> &Option<String>
pub fn get_account_id(&self) -> &Option<String>
The Amazon Web Services account ID associated with the S3 Batch Operations job.
sourcepub fn job_id(self, input: impl Into<String>) -> Self
pub fn job_id(self, input: impl Into<String>) -> Self
The ID of the job whose status you want to update.
This field is required.sourcepub fn set_job_id(self, input: Option<String>) -> Self
pub fn set_job_id(self, input: Option<String>) -> Self
The ID of the job whose status you want to update.
sourcepub fn get_job_id(&self) -> &Option<String>
pub fn get_job_id(&self) -> &Option<String>
The ID of the job whose status you want to update.
sourcepub fn requested_job_status(self, input: RequestedJobStatus) -> Self
pub fn requested_job_status(self, input: RequestedJobStatus) -> Self
The status that you want to move the specified job to.
This field is required.sourcepub fn set_requested_job_status(self, input: Option<RequestedJobStatus>) -> Self
pub fn set_requested_job_status(self, input: Option<RequestedJobStatus>) -> Self
The status that you want to move the specified job to.
sourcepub fn get_requested_job_status(&self) -> &Option<RequestedJobStatus>
pub fn get_requested_job_status(&self) -> &Option<RequestedJobStatus>
The status that you want to move the specified job to.
sourcepub fn status_update_reason(self, input: impl Into<String>) -> Self
pub fn status_update_reason(self, input: impl Into<String>) -> Self
A description of the reason why you want to change the specified job's status. This field can be any string up to the maximum length.
sourcepub fn set_status_update_reason(self, input: Option<String>) -> Self
pub fn set_status_update_reason(self, input: Option<String>) -> Self
A description of the reason why you want to change the specified job's status. This field can be any string up to the maximum length.
sourcepub fn get_status_update_reason(&self) -> &Option<String>
pub fn get_status_update_reason(&self) -> &Option<String>
A description of the reason why you want to change the specified job's status. This field can be any string up to the maximum length.
sourcepub fn build(self) -> Result<UpdateJobStatusInput, BuildError>
pub fn build(self) -> Result<UpdateJobStatusInput, BuildError>
Consumes the builder and constructs a UpdateJobStatusInput.
source§impl UpdateJobStatusInputBuilder
impl UpdateJobStatusInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateJobStatusOutput, SdkError<UpdateJobStatusError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateJobStatusOutput, SdkError<UpdateJobStatusError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateJobStatusInputBuilder
impl Clone for UpdateJobStatusInputBuilder
source§fn clone(&self) -> UpdateJobStatusInputBuilder
fn clone(&self) -> UpdateJobStatusInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateJobStatusInputBuilder
impl Debug for UpdateJobStatusInputBuilder
source§impl Default for UpdateJobStatusInputBuilder
impl Default for UpdateJobStatusInputBuilder
source§fn default() -> UpdateJobStatusInputBuilder
fn default() -> UpdateJobStatusInputBuilder
source§impl PartialEq for UpdateJobStatusInputBuilder
impl PartialEq for UpdateJobStatusInputBuilder
source§fn eq(&self, other: &UpdateJobStatusInputBuilder) -> bool
fn eq(&self, other: &UpdateJobStatusInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateJobStatusInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateJobStatusInputBuilder
impl RefUnwindSafe for UpdateJobStatusInputBuilder
impl Send for UpdateJobStatusInputBuilder
impl Sync for UpdateJobStatusInputBuilder
impl Unpin for UpdateJobStatusInputBuilder
impl UnwindSafe for UpdateJobStatusInputBuilder
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
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>
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>
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 more