#[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
source§fn eq(&self, other: &UpdateScheduleInput) -> bool
fn eq(&self, other: &UpdateScheduleInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateScheduleInput
Auto Trait Implementations§
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> 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>
Creates a shared type from an unshared type.