Struct aws_sdk_macie2::types::JobScheduleFrequency
source · #[non_exhaustive]pub struct JobScheduleFrequency {
pub daily_schedule: Option<DailySchedule>,
pub monthly_schedule: Option<MonthlySchedule>,
pub weekly_schedule: Option<WeeklySchedule>,
}
Expand description
Specifies the recurrence pattern for running a classification job.
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.daily_schedule: Option<DailySchedule>
Specifies a daily recurrence pattern for running the job.
monthly_schedule: Option<MonthlySchedule>
Specifies a monthly recurrence pattern for running the job.
weekly_schedule: Option<WeeklySchedule>
Specifies a weekly recurrence pattern for running the job.
Implementations§
source§impl JobScheduleFrequency
impl JobScheduleFrequency
sourcepub fn daily_schedule(&self) -> Option<&DailySchedule>
pub fn daily_schedule(&self) -> Option<&DailySchedule>
Specifies a daily recurrence pattern for running the job.
sourcepub fn monthly_schedule(&self) -> Option<&MonthlySchedule>
pub fn monthly_schedule(&self) -> Option<&MonthlySchedule>
Specifies a monthly recurrence pattern for running the job.
sourcepub fn weekly_schedule(&self) -> Option<&WeeklySchedule>
pub fn weekly_schedule(&self) -> Option<&WeeklySchedule>
Specifies a weekly recurrence pattern for running the job.
source§impl JobScheduleFrequency
impl JobScheduleFrequency
sourcepub fn builder() -> JobScheduleFrequencyBuilder
pub fn builder() -> JobScheduleFrequencyBuilder
Creates a new builder-style object to manufacture JobScheduleFrequency
.
Trait Implementations§
source§impl Clone for JobScheduleFrequency
impl Clone for JobScheduleFrequency
source§fn clone(&self) -> JobScheduleFrequency
fn clone(&self) -> JobScheduleFrequency
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 JobScheduleFrequency
impl Debug for JobScheduleFrequency
source§impl PartialEq for JobScheduleFrequency
impl PartialEq for JobScheduleFrequency
source§fn eq(&self, other: &JobScheduleFrequency) -> bool
fn eq(&self, other: &JobScheduleFrequency) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for JobScheduleFrequency
Auto Trait Implementations§
impl RefUnwindSafe for JobScheduleFrequency
impl Send for JobScheduleFrequency
impl Sync for JobScheduleFrequency
impl Unpin for JobScheduleFrequency
impl UnwindSafe for JobScheduleFrequency
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.