#[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 ==
.