#[non_exhaustive]pub struct ScheduledInstanceRecurrenceRequest {
pub frequency: Option<String>,
pub interval: Option<i32>,
pub occurrence_days: Option<Vec<i32>>,
pub occurrence_relative_to_end: Option<bool>,
pub occurrence_unit: Option<String>,
}
Expand description
Describes the recurring schedule for a Scheduled Instance.
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.frequency: Option<String>
The frequency (Daily
, Weekly
, or Monthly
).
interval: Option<i32>
The interval quantity. The interval unit depends on the value of Frequency
. For example, every 2 weeks or every 2 months.
occurrence_days: Option<Vec<i32>>
The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is one or more days of the week (1-7, where 1 is Sunday). You can't specify this value with a daily schedule. If the occurrence is relative to the end of the month, you can specify only a single day.
occurrence_relative_to_end: Option<bool>
Indicates whether the occurrence is relative to the end of the specified week or month. You can't specify this value with a daily schedule.
occurrence_unit: Option<String>
The unit for OccurrenceDays
(DayOfWeek
or DayOfMonth
). This value is required for a monthly schedule. You can't specify DayOfWeek
with a weekly schedule. You can't specify this value with a daily schedule.
Implementations
sourceimpl ScheduledInstanceRecurrenceRequest
impl ScheduledInstanceRecurrenceRequest
sourcepub fn interval(&self) -> Option<i32>
pub fn interval(&self) -> Option<i32>
The interval quantity. The interval unit depends on the value of Frequency
. For example, every 2 weeks or every 2 months.
sourcepub fn occurrence_days(&self) -> Option<&[i32]>
pub fn occurrence_days(&self) -> Option<&[i32]>
The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is one or more days of the week (1-7, where 1 is Sunday). You can't specify this value with a daily schedule. If the occurrence is relative to the end of the month, you can specify only a single day.
sourcepub fn occurrence_relative_to_end(&self) -> Option<bool>
pub fn occurrence_relative_to_end(&self) -> Option<bool>
Indicates whether the occurrence is relative to the end of the specified week or month. You can't specify this value with a daily schedule.
sourcepub fn occurrence_unit(&self) -> Option<&str>
pub fn occurrence_unit(&self) -> Option<&str>
The unit for OccurrenceDays
(DayOfWeek
or DayOfMonth
). This value is required for a monthly schedule. You can't specify DayOfWeek
with a weekly schedule. You can't specify this value with a daily schedule.
sourceimpl ScheduledInstanceRecurrenceRequest
impl ScheduledInstanceRecurrenceRequest
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ScheduledInstanceRecurrenceRequest
.
Trait Implementations
sourceimpl Clone for ScheduledInstanceRecurrenceRequest
impl Clone for ScheduledInstanceRecurrenceRequest
sourcefn clone(&self) -> ScheduledInstanceRecurrenceRequest
fn clone(&self) -> ScheduledInstanceRecurrenceRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<ScheduledInstanceRecurrenceRequest> for ScheduledInstanceRecurrenceRequest
impl PartialEq<ScheduledInstanceRecurrenceRequest> for ScheduledInstanceRecurrenceRequest
sourcefn eq(&self, other: &ScheduledInstanceRecurrenceRequest) -> bool
fn eq(&self, other: &ScheduledInstanceRecurrenceRequest) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ScheduledInstanceRecurrenceRequest) -> bool
fn ne(&self, other: &ScheduledInstanceRecurrenceRequest) -> bool
This method tests for !=
.
impl StructuralPartialEq for ScheduledInstanceRecurrenceRequest
Auto Trait Implementations
impl RefUnwindSafe for ScheduledInstanceRecurrenceRequest
impl Send for ScheduledInstanceRecurrenceRequest
impl Sync for ScheduledInstanceRecurrenceRequest
impl Unpin for ScheduledInstanceRecurrenceRequest
impl UnwindSafe for ScheduledInstanceRecurrenceRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more