#[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
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 job_names(&self) -> &[String]
pub fn job_names(&self) -> &[String]
The name or names of one or more jobs to be run.
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.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateScheduleInput
impl Debug for CreateScheduleInput
source§impl PartialEq for CreateScheduleInput
impl PartialEq for CreateScheduleInput
source§fn eq(&self, other: &CreateScheduleInput) -> bool
fn eq(&self, other: &CreateScheduleInput) -> bool
self
and other
values to be equal, and is used
by ==
.