[−][src]Struct rusoto_ssm::CreateMaintenanceWindowRequest
Fields
allow_unassociated_targets: bool
Enables a maintenance window task to run on managed instances, even if you have not registered those instances as targets. If enabled, then you must specify the unregistered instances (by instance ID) when you register a task with the maintenance window.
If you don't enable this option, then you must specify previously-registered targets when you register a task with the maintenance window.
client_token: Option<String>
User-provided idempotency token.
cutoff: i64
The number of hours before the end of the maintenance window that Systems Manager stops scheduling new tasks for execution.
description: Option<String>
An optional description for the maintenance window. We recommend specifying a description to help you organize your maintenance windows.
duration: i64
The duration of the maintenance window in hours.
end_date: Option<String>
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.
name: String
The name of the maintenance window.
schedule: String
The schedule of the maintenance window in the form of a cron or rate expression.
schedule_timezone: Option<String>
The time zone that the scheduled maintenance window executions are based on, in Internet Assigned Numbers Authority (IANA) format. For example: "America/Los_Angeles", "etc/UTC", or "Asia/Seoul". For more information, see the Time Zone Database on the IANA website.
start_date: Option<String>
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.
Optional metadata that you assign to a resource. Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For example, you might want to tag a maintenance window to identify the type of tasks it will run, the types of targets, and the environment it will run in. In this case, you could specify the following key name/value pairs:
-
Key=TaskType,Value=AgentUpdate
-
Key=OS,Value=Windows
-
Key=Environment,Value=Production
To add tags to an existing maintenance window, use the AddTagsToResource action.
Trait Implementations
impl PartialEq<CreateMaintenanceWindowRequest> for CreateMaintenanceWindowRequest
[src]
fn eq(&self, other: &CreateMaintenanceWindowRequest) -> bool
[src]
fn ne(&self, other: &CreateMaintenanceWindowRequest) -> bool
[src]
impl Default for CreateMaintenanceWindowRequest
[src]
impl Clone for CreateMaintenanceWindowRequest
[src]
fn clone(&self) -> CreateMaintenanceWindowRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateMaintenanceWindowRequest
[src]
impl Serialize for CreateMaintenanceWindowRequest
[src]
Auto Trait Implementations
impl Send for CreateMaintenanceWindowRequest
impl Sync for CreateMaintenanceWindowRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self