#[non_exhaustive]pub struct CreateSnapshotScheduleInput {
pub schedule_definitions: Option<Vec<String>>,
pub schedule_identifier: Option<String>,
pub schedule_description: Option<String>,
pub tags: Option<Vec<Tag>>,
pub dry_run: Option<bool>,
pub next_invocations: Option<i32>,
}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.schedule_definitions: Option<Vec<String>>The definition of the snapshot schedule. The definition is made up of schedule expressions, for example "cron(30 12 *)" or "rate(12 hours)".
schedule_identifier: Option<String>A unique identifier for a snapshot schedule. Only alphanumeric characters are allowed for the identifier.
schedule_description: Option<String>The description of the snapshot schedule.
An optional set of tags you can use to search for the schedule.
dry_run: Option<bool>next_invocations: Option<i32>Implementations§
source§impl CreateSnapshotScheduleInput
impl CreateSnapshotScheduleInput
sourcepub fn schedule_definitions(&self) -> &[String]
pub fn schedule_definitions(&self) -> &[String]
The definition of the snapshot schedule. The definition is made up of schedule expressions, for example "cron(30 12 *)" or "rate(12 hours)".
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .schedule_definitions.is_none().
sourcepub fn schedule_identifier(&self) -> Option<&str>
pub fn schedule_identifier(&self) -> Option<&str>
A unique identifier for a snapshot schedule. Only alphanumeric characters are allowed for the identifier.
sourcepub fn schedule_description(&self) -> Option<&str>
pub fn schedule_description(&self) -> Option<&str>
The description of the snapshot schedule.
An optional set of tags you can use to search for the schedule.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
sourcepub fn next_invocations(&self) -> Option<i32>
pub fn next_invocations(&self) -> Option<i32>
source§impl CreateSnapshotScheduleInput
impl CreateSnapshotScheduleInput
sourcepub fn builder() -> CreateSnapshotScheduleInputBuilder
pub fn builder() -> CreateSnapshotScheduleInputBuilder
Creates a new builder-style object to manufacture CreateSnapshotScheduleInput.
Trait Implementations§
source§impl Clone for CreateSnapshotScheduleInput
impl Clone for CreateSnapshotScheduleInput
source§fn clone(&self) -> CreateSnapshotScheduleInput
fn clone(&self) -> CreateSnapshotScheduleInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateSnapshotScheduleInput
impl Debug for CreateSnapshotScheduleInput
source§impl PartialEq for CreateSnapshotScheduleInput
impl PartialEq for CreateSnapshotScheduleInput
source§fn eq(&self, other: &CreateSnapshotScheduleInput) -> bool
fn eq(&self, other: &CreateSnapshotScheduleInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateSnapshotScheduleInput
Auto Trait Implementations§
impl Freeze for CreateSnapshotScheduleInput
impl RefUnwindSafe for CreateSnapshotScheduleInput
impl Send for CreateSnapshotScheduleInput
impl Sync for CreateSnapshotScheduleInput
impl Unpin for CreateSnapshotScheduleInput
impl UnwindSafe for CreateSnapshotScheduleInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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