#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSnapshotSchedule, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSnapshotSchedule, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateSnapshotSchedule
>
Creates a new builder-style object to manufacture CreateSnapshotScheduleInput
The definition of the snapshot schedule. The definition is made up of schedule expressions, for example "cron(30 12 *)" or "rate(12 hours)".
A unique identifier for a snapshot schedule. Only alphanumeric characters are allowed for the identifier.
The description of the snapshot schedule.
An optional set of tags you can use to search for the schedule.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateSnapshotScheduleInput
impl Send for CreateSnapshotScheduleInput
impl Sync for CreateSnapshotScheduleInput
impl Unpin for CreateSnapshotScheduleInput
impl UnwindSafe for CreateSnapshotScheduleInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more