Struct aws_sdk_glue::operation::update_job::builders::UpdateJobInputBuilder
source · #[non_exhaustive]pub struct UpdateJobInputBuilder { /* private fields */ }Expand description
A builder for UpdateJobInput.
Implementations§
source§impl UpdateJobInputBuilder
impl UpdateJobInputBuilder
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.
sourcepub fn build(self) -> Result<UpdateJobInput, BuildError>
pub fn build(self) -> Result<UpdateJobInput, BuildError>
Consumes the builder and constructs a UpdateJobInput.
source§impl UpdateJobInputBuilder
impl UpdateJobInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateJobOutput, SdkError<UpdateJobError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateJobOutput, SdkError<UpdateJobError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateJobInputBuilder
impl Clone for UpdateJobInputBuilder
source§fn clone(&self) -> UpdateJobInputBuilder
fn clone(&self) -> UpdateJobInputBuilder
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 UpdateJobInputBuilder
impl Debug for UpdateJobInputBuilder
source§impl Default for UpdateJobInputBuilder
impl Default for UpdateJobInputBuilder
source§fn default() -> UpdateJobInputBuilder
fn default() -> UpdateJobInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdateJobInputBuilder> for UpdateJobInputBuilder
impl PartialEq<UpdateJobInputBuilder> for UpdateJobInputBuilder
source§fn eq(&self, other: &UpdateJobInputBuilder) -> bool
fn eq(&self, other: &UpdateJobInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateJobInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdateJobInputBuilder
impl Send for UpdateJobInputBuilder
impl Sync for UpdateJobInputBuilder
impl Unpin for UpdateJobInputBuilder
impl UnwindSafe for UpdateJobInputBuilder
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