#[non_exhaustive]pub struct UpdateScheduleInput {
pub job_names: Option<Vec<String>>,
pub cron_expression: Option<String>,
pub name: Option<String>,
}
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_names: Option<Vec<String>>
The name or names of one or more jobs to be run for this schedule.
cron_expression: Option<String>
The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.
name: Option<String>
The name of the schedule to update.
Implementations§
source§impl UpdateScheduleInput
impl UpdateScheduleInput
sourcepub fn job_names(&self) -> &[String]
pub fn job_names(&self) -> &[String]
The name or names of one or more jobs to be run for this schedule.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .job_names.is_none()
.
sourcepub fn cron_expression(&self) -> Option<&str>
pub fn cron_expression(&self) -> Option<&str>
The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.
source§impl UpdateScheduleInput
impl UpdateScheduleInput
sourcepub fn builder() -> UpdateScheduleInputBuilder
pub fn builder() -> UpdateScheduleInputBuilder
Creates a new builder-style object to manufacture UpdateScheduleInput
.
Trait Implementations§
source§impl Clone for UpdateScheduleInput
impl Clone for UpdateScheduleInput
source§fn clone(&self) -> UpdateScheduleInput
fn clone(&self) -> UpdateScheduleInput
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 UpdateScheduleInput
impl Debug for UpdateScheduleInput
source§impl PartialEq for UpdateScheduleInput
impl PartialEq for UpdateScheduleInput
impl StructuralPartialEq for UpdateScheduleInput
Auto Trait Implementations§
impl Freeze for UpdateScheduleInput
impl RefUnwindSafe for UpdateScheduleInput
impl Send for UpdateScheduleInput
impl Sync for UpdateScheduleInput
impl Unpin for UpdateScheduleInput
impl UnwindSafe for UpdateScheduleInput
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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.