pub struct DeleteApplicationMessage {
pub application_name: String,
pub terminate_env_by_force: Option<bool>,
}
Expand description
Request to delete an application.
Fields§
§application_name: String
The name of the application to delete.
terminate_env_by_force: Option<bool>
When set to true, running environments will be terminated before deleting the application.
Trait Implementations§
Source§impl Clone for DeleteApplicationMessage
impl Clone for DeleteApplicationMessage
Source§fn clone(&self) -> DeleteApplicationMessage
fn clone(&self) -> DeleteApplicationMessage
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 DeleteApplicationMessage
impl Debug for DeleteApplicationMessage
Source§impl Default for DeleteApplicationMessage
impl Default for DeleteApplicationMessage
Source§fn default() -> DeleteApplicationMessage
fn default() -> DeleteApplicationMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteApplicationMessage
impl PartialEq for DeleteApplicationMessage
impl StructuralPartialEq for DeleteApplicationMessage
Auto Trait Implementations§
impl Freeze for DeleteApplicationMessage
impl RefUnwindSafe for DeleteApplicationMessage
impl Send for DeleteApplicationMessage
impl Sync for DeleteApplicationMessage
impl Unpin for DeleteApplicationMessage
impl UnwindSafe for DeleteApplicationMessage
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