Struct aws_sdk_ssm::input::UpdateMaintenanceWindowInput
source · [−]#[non_exhaustive]pub struct UpdateMaintenanceWindowInput { /* private fields */ }
Implementations
sourceimpl UpdateMaintenanceWindowInput
impl UpdateMaintenanceWindowInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateMaintenanceWindow, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateMaintenanceWindow, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateMaintenanceWindow
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateMaintenanceWindowInput
.
sourceimpl UpdateMaintenanceWindowInput
impl UpdateMaintenanceWindowInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
An optional description for the update request.
sourcepub fn start_date(&self) -> Option<&str>
pub fn start_date(&self) -> Option<&str>
The date and time, in ISO-8601 Extended format, for when you want the maintenance window to become active. StartDate
allows you to delay activation of the maintenance window until the specified future date.
sourcepub fn end_date(&self) -> Option<&str>
pub fn end_date(&self) -> Option<&str>
The date and time, in ISO-8601 Extended format, for when you want the maintenance window to become inactive. EndDate
allows you to set a date and time in the future when the maintenance window will no longer run.
sourcepub fn schedule(&self) -> Option<&str>
pub fn schedule(&self) -> Option<&str>
The schedule of the maintenance window in the form of a cron or rate expression.
sourcepub fn schedule_timezone(&self) -> Option<&str>
pub fn schedule_timezone(&self) -> Option<&str>
The time zone that the scheduled maintenance window executions are based on, in Internet Assigned Numbers Authority (IANA) format. For example: "America/Los_Angeles", "UTC", or "Asia/Seoul". For more information, see the Time Zone Database on the IANA website.
sourcepub fn schedule_offset(&self) -> Option<i32>
pub fn schedule_offset(&self) -> Option<i32>
The number of days to wait after the date and time specified by a cron expression before running the maintenance window.
For example, the following cron expression schedules a maintenance window to run the third Tuesday of every month at 11:30 PM.
cron(30 23 ? * TUE#3 *)
If the schedule offset is 2
, the maintenance window won't run until two days later.
sourcepub fn cutoff(&self) -> Option<i32>
pub fn cutoff(&self) -> Option<i32>
The number of hours before the end of the maintenance window that Amazon Web Services Systems Manager stops scheduling new tasks for execution.
sourcepub fn allow_unassociated_targets(&self) -> Option<bool>
pub fn allow_unassociated_targets(&self) -> Option<bool>
Whether targets must be registered with the maintenance window before tasks can be defined for those targets.
Trait Implementations
sourceimpl Clone for UpdateMaintenanceWindowInput
impl Clone for UpdateMaintenanceWindowInput
sourcefn clone(&self) -> UpdateMaintenanceWindowInput
fn clone(&self) -> UpdateMaintenanceWindowInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more