Struct aws_sdk_macie2::model::MonthlySchedule
source · [−]#[non_exhaustive]pub struct MonthlySchedule {
pub day_of_month: i32,
}
Expand description
Specifies a monthly recurrence pattern for running a classification job.
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.day_of_month: i32
The numeric day of the month when Amazon Macie runs the job. This value can be an integer from 1 through 31.
If this value exceeds the number of days in a certain month, Macie doesn't run the job that month. Macie runs the job only during months that have the specified day. For example, if this value is 31 and a month has only 30 days, Macie doesn't run the job that month. To run the job every month, specify a value that's less than 29.
Implementations
sourceimpl MonthlySchedule
impl MonthlySchedule
sourcepub fn day_of_month(&self) -> i32
pub fn day_of_month(&self) -> i32
The numeric day of the month when Amazon Macie runs the job. This value can be an integer from 1 through 31.
If this value exceeds the number of days in a certain month, Macie doesn't run the job that month. Macie runs the job only during months that have the specified day. For example, if this value is 31 and a month has only 30 days, Macie doesn't run the job that month. To run the job every month, specify a value that's less than 29.
sourceimpl MonthlySchedule
impl MonthlySchedule
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MonthlySchedule
Trait Implementations
sourceimpl Clone for MonthlySchedule
impl Clone for MonthlySchedule
sourcefn clone(&self) -> MonthlySchedule
fn clone(&self) -> MonthlySchedule
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 Debug for MonthlySchedule
impl Debug for MonthlySchedule
sourceimpl PartialEq<MonthlySchedule> for MonthlySchedule
impl PartialEq<MonthlySchedule> for MonthlySchedule
sourcefn eq(&self, other: &MonthlySchedule) -> bool
fn eq(&self, other: &MonthlySchedule) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MonthlySchedule) -> bool
fn ne(&self, other: &MonthlySchedule) -> bool
This method tests for !=
.
impl StructuralPartialEq for MonthlySchedule
Auto Trait Implementations
impl RefUnwindSafe for MonthlySchedule
impl Send for MonthlySchedule
impl Sync for MonthlySchedule
impl Unpin for MonthlySchedule
impl UnwindSafe for MonthlySchedule
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