pub struct ModifyInstanceEventStartTimeRequest {
pub dry_run: Option<bool>,
pub instance_event_id: String,
pub instance_id: String,
pub not_before: String,
}Fields§
§dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
instance_event_id: StringThe ID of the event whose date and time you are modifying.
instance_id: StringThe ID of the instance with the scheduled event.
not_before: StringThe new date and time when the event will take place.
Trait Implementations§
Source§impl Clone for ModifyInstanceEventStartTimeRequest
impl Clone for ModifyInstanceEventStartTimeRequest
Source§fn clone(&self) -> ModifyInstanceEventStartTimeRequest
fn clone(&self) -> ModifyInstanceEventStartTimeRequest
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 Default for ModifyInstanceEventStartTimeRequest
impl Default for ModifyInstanceEventStartTimeRequest
Source§fn default() -> ModifyInstanceEventStartTimeRequest
fn default() -> ModifyInstanceEventStartTimeRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyInstanceEventStartTimeRequest
impl PartialEq for ModifyInstanceEventStartTimeRequest
Source§fn eq(&self, other: &ModifyInstanceEventStartTimeRequest) -> bool
fn eq(&self, other: &ModifyInstanceEventStartTimeRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModifyInstanceEventStartTimeRequest
Auto Trait Implementations§
impl Freeze for ModifyInstanceEventStartTimeRequest
impl RefUnwindSafe for ModifyInstanceEventStartTimeRequest
impl Send for ModifyInstanceEventStartTimeRequest
impl Sync for ModifyInstanceEventStartTimeRequest
impl Unpin for ModifyInstanceEventStartTimeRequest
impl UnwindSafe for ModifyInstanceEventStartTimeRequest
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