Struct aws_sdk_glue::operation::update_job::builders::UpdateJobFluentBuilder
source · pub struct UpdateJobFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateJob.
Updates an existing job definition. The previous job definition is completely overwritten by this information.
Implementations§
source§impl UpdateJobFluentBuilder
impl UpdateJobFluentBuilder
sourcepub fn as_input(&self) -> &UpdateJobInputBuilder
pub fn as_input(&self) -> &UpdateJobInputBuilder
Access the UpdateJob as a reference.
sourcepub async fn send(
self
) -> Result<UpdateJobOutput, SdkError<UpdateJobError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateJobOutput, SdkError<UpdateJobError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateJobOutput, UpdateJobError>, SdkError<UpdateJobError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateJobOutput, UpdateJobError>, SdkError<UpdateJobError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn job_name(self, input: impl Into<String>) -> Self
pub fn job_name(self, input: impl Into<String>) -> Self
The name of the job definition to update.
sourcepub fn set_job_name(self, input: Option<String>) -> Self
pub fn set_job_name(self, input: Option<String>) -> Self
The name of the job definition to update.
sourcepub fn get_job_name(&self) -> &Option<String>
pub fn get_job_name(&self) -> &Option<String>
The name of the job definition to update.
sourcepub fn job_update(self, input: JobUpdate) -> Self
pub fn job_update(self, input: JobUpdate) -> Self
Specifies the values with which to update the job definition. Unspecified configuration is removed or reset to default values.
sourcepub fn set_job_update(self, input: Option<JobUpdate>) -> Self
pub fn set_job_update(self, input: Option<JobUpdate>) -> Self
Specifies the values with which to update the job definition. Unspecified configuration is removed or reset to default values.
sourcepub fn get_job_update(&self) -> &Option<JobUpdate>
pub fn get_job_update(&self) -> &Option<JobUpdate>
Specifies the values with which to update the job definition. Unspecified configuration is removed or reset to default values.
Trait Implementations§
source§impl Clone for UpdateJobFluentBuilder
impl Clone for UpdateJobFluentBuilder
source§fn clone(&self) -> UpdateJobFluentBuilder
fn clone(&self) -> UpdateJobFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more