pub struct AbortEnvironmentUpdateMessage {
pub environment_id: Option<String>,
pub environment_name: Option<String>,
}
Expand description
Fields§
§environment_id: Option<String>
This specifies the ID of the environment with the in-progress update that you want to cancel.
environment_name: Option<String>
This specifies the name of the environment with the in-progress update that you want to cancel.
Trait Implementations§
Source§impl Clone for AbortEnvironmentUpdateMessage
impl Clone for AbortEnvironmentUpdateMessage
Source§fn clone(&self) -> AbortEnvironmentUpdateMessage
fn clone(&self) -> AbortEnvironmentUpdateMessage
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 AbortEnvironmentUpdateMessage
impl Default for AbortEnvironmentUpdateMessage
Source§fn default() -> AbortEnvironmentUpdateMessage
fn default() -> AbortEnvironmentUpdateMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for AbortEnvironmentUpdateMessage
impl PartialEq for AbortEnvironmentUpdateMessage
Source§fn eq(&self, other: &AbortEnvironmentUpdateMessage) -> bool
fn eq(&self, other: &AbortEnvironmentUpdateMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AbortEnvironmentUpdateMessage
Auto Trait Implementations§
impl Freeze for AbortEnvironmentUpdateMessage
impl RefUnwindSafe for AbortEnvironmentUpdateMessage
impl Send for AbortEnvironmentUpdateMessage
impl Sync for AbortEnvironmentUpdateMessage
impl Unpin for AbortEnvironmentUpdateMessage
impl UnwindSafe for AbortEnvironmentUpdateMessage
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