#[non_exhaustive]pub struct ModifySnapshotScheduleOutput {
pub schedule_definitions: Option<Vec<String>>,
pub schedule_identifier: Option<String>,
pub schedule_description: Option<String>,
pub tags: Option<Vec<Tag>>,
pub next_invocations: Option<Vec<DateTime>>,
pub associated_cluster_count: Option<i32>,
pub associated_clusters: Option<Vec<ClusterAssociatedToSchedule>>,
}
Expand description
Describes a snapshot schedule. You can set a regular interval for creating snapshots of a cluster. You can also schedule snapshots for specific dates.
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>>
A list of ScheduleDefinitions.
schedule_identifier: Option<String>
A unique identifier for the schedule.
schedule_description: Option<String>
The description of the schedule.
An optional set of tags describing the schedule.
next_invocations: Option<Vec<DateTime>>
associated_cluster_count: Option<i32>
The number of clusters associated with the schedule.
associated_clusters: Option<Vec<ClusterAssociatedToSchedule>>
A list of clusters associated with the schedule. A maximum of 100 clusters is returned.
Implementations
A unique identifier for the schedule.
The description of the schedule.
An optional set of tags describing the schedule.
The number of clusters associated with the schedule.
A list of clusters associated with the schedule. A maximum of 100 clusters is returned.
Creates a new builder-style object to manufacture ModifySnapshotScheduleOutput
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 Send for ModifySnapshotScheduleOutput
impl Sync for ModifySnapshotScheduleOutput
impl Unpin for ModifySnapshotScheduleOutput
impl UnwindSafe for ModifySnapshotScheduleOutput
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