#[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
impl StructuralPartialEq for CreateScheduleInput
Auto Trait Implementations§
impl Freeze for CreateScheduleInput
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
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)
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>
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>
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 more