pub struct ModifyScheduledActionMessage {
pub enable: Option<bool>,
pub end_time: Option<String>,
pub iam_role: Option<String>,
pub schedule: Option<String>,
pub scheduled_action_description: Option<String>,
pub scheduled_action_name: String,
pub start_time: Option<String>,
pub target_action: Option<ScheduledActionType>,
}
Fields§
§enable: Option<bool>
A modified enable flag of the scheduled action. If true, the scheduled action is active. If false, the scheduled action is disabled.
end_time: Option<String>
A modified end time of the scheduled action. For more information about this parameter, see ScheduledAction.
iam_role: Option<String>
A different IAM role to assume to run the target action. For more information about this parameter, see ScheduledAction.
schedule: Option<String>
A modified schedule in either at( )
or cron( )
format. For more information about this parameter, see ScheduledAction.
scheduled_action_description: Option<String>
A modified description of the scheduled action.
scheduled_action_name: String
The name of the scheduled action to modify.
start_time: Option<String>
A modified start time of the scheduled action. For more information about this parameter, see ScheduledAction.
target_action: Option<ScheduledActionType>
A modified JSON format of the scheduled action. For more information about this parameter, see ScheduledAction.
Trait Implementations§
Source§impl Clone for ModifyScheduledActionMessage
impl Clone for ModifyScheduledActionMessage
Source§fn clone(&self) -> ModifyScheduledActionMessage
fn clone(&self) -> ModifyScheduledActionMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ModifyScheduledActionMessage
impl Debug for ModifyScheduledActionMessage
Source§impl Default for ModifyScheduledActionMessage
impl Default for ModifyScheduledActionMessage
Source§fn default() -> ModifyScheduledActionMessage
fn default() -> ModifyScheduledActionMessage
Source§impl PartialEq for ModifyScheduledActionMessage
impl PartialEq for ModifyScheduledActionMessage
Source§fn eq(&self, other: &ModifyScheduledActionMessage) -> bool
fn eq(&self, other: &ModifyScheduledActionMessage) -> bool
self
and other
values to be equal, and is used by ==
.