Struct aws_sdk_glue::operation::update_job::UpdateJobInput
source · #[non_exhaustive]pub struct UpdateJobInput {
pub job_name: Option<String>,
pub job_update: Option<JobUpdate>,
}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.job_name: Option<String>The name of the job definition to update.
job_update: Option<JobUpdate>Specifies the values with which to update the job definition. Unspecified configuration is removed or reset to default values.
Implementations§
source§impl UpdateJobInput
impl UpdateJobInput
sourcepub fn builder() -> UpdateJobInputBuilder
pub fn builder() -> UpdateJobInputBuilder
Creates a new builder-style object to manufacture UpdateJobInput.
Trait Implementations§
source§impl Clone for UpdateJobInput
impl Clone for UpdateJobInput
source§fn clone(&self) -> UpdateJobInput
fn clone(&self) -> UpdateJobInput
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 UpdateJobInput
impl Debug for UpdateJobInput
source§impl PartialEq<UpdateJobInput> for UpdateJobInput
impl PartialEq<UpdateJobInput> for UpdateJobInput
source§fn eq(&self, other: &UpdateJobInput) -> bool
fn eq(&self, other: &UpdateJobInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateJobInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateJobInput
impl Send for UpdateJobInput
impl Sync for UpdateJobInput
impl Unpin for UpdateJobInput
impl UnwindSafe for UpdateJobInput
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