pub struct ManagedAction {
pub action_description: Option<String>,
pub action_id: Option<String>,
pub action_type: Option<String>,
pub status: Option<String>,
pub window_start_time: Option<String>,
}
Expand description
The record of an upcoming or in-progress managed action.
Fields§
§action_description: Option<String>
A description of the managed action.
action_id: Option<String>
A unique identifier for the managed action.
action_type: Option<String>
The type of managed action.
status: Option<String>
The status of the managed action. If the action is Scheduled
, you can apply it immediately with ApplyEnvironmentManagedAction.
window_start_time: Option<String>
The start time of the maintenance window in which the managed action will execute.
Trait Implementations§
Source§impl Clone for ManagedAction
impl Clone for ManagedAction
Source§fn clone(&self) -> ManagedAction
fn clone(&self) -> ManagedAction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ManagedAction
impl Debug for ManagedAction
Source§impl Default for ManagedAction
impl Default for ManagedAction
Source§fn default() -> ManagedAction
fn default() -> ManagedAction
Returns the “default value” for a type. Read more
Source§impl PartialEq for ManagedAction
impl PartialEq for ManagedAction
impl StructuralPartialEq for ManagedAction
Auto Trait Implementations§
impl Freeze for ManagedAction
impl RefUnwindSafe for ManagedAction
impl Send for ManagedAction
impl Sync for ManagedAction
impl Unpin for ManagedAction
impl UnwindSafe for ManagedAction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more