#[non_exhaustive]pub struct CreateScheduleInput {
pub job_names: Option<Vec<String>>,
pub cron_expression: Option<String>,
pub tags: Option<HashMap<String, 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.
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.
Metadata tags to apply to this schedule.
name: Option<String>
A unique name for the schedule. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
Implementations§
source§impl CreateScheduleInput
impl CreateScheduleInput
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.
Metadata tags to apply to this schedule.
source§impl CreateScheduleInput
impl CreateScheduleInput
sourcepub fn builder() -> CreateScheduleInputBuilder
pub fn builder() -> CreateScheduleInputBuilder
Creates a new builder-style object to manufacture CreateScheduleInput
.
Trait Implementations§
source§impl Clone for CreateScheduleInput
impl Clone for CreateScheduleInput
source§fn clone(&self) -> CreateScheduleInput
fn clone(&self) -> CreateScheduleInput
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 CreateScheduleInput
impl Debug for CreateScheduleInput
source§impl PartialEq<CreateScheduleInput> for CreateScheduleInput
impl PartialEq<CreateScheduleInput> for CreateScheduleInput
source§fn eq(&self, other: &CreateScheduleInput) -> bool
fn eq(&self, other: &CreateScheduleInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateScheduleInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateScheduleInput
impl Send for CreateScheduleInput
impl Sync for CreateScheduleInput
impl Unpin for CreateScheduleInput
impl UnwindSafe for CreateScheduleInput
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