pub struct DeleteEnvironmentConfigurationMessage {
pub application_name: String,
pub environment_name: String,
}
Expand description
Request to delete a draft environment configuration.
Fields§
§application_name: String
The name of the application the environment is associated with.
environment_name: String
The name of the environment to delete the draft configuration from.
Trait Implementations§
Source§impl Clone for DeleteEnvironmentConfigurationMessage
impl Clone for DeleteEnvironmentConfigurationMessage
Source§fn clone(&self) -> DeleteEnvironmentConfigurationMessage
fn clone(&self) -> DeleteEnvironmentConfigurationMessage
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 DeleteEnvironmentConfigurationMessage
impl Default for DeleteEnvironmentConfigurationMessage
Source§fn default() -> DeleteEnvironmentConfigurationMessage
fn default() -> DeleteEnvironmentConfigurationMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteEnvironmentConfigurationMessage
impl PartialEq for DeleteEnvironmentConfigurationMessage
Source§fn eq(&self, other: &DeleteEnvironmentConfigurationMessage) -> bool
fn eq(&self, other: &DeleteEnvironmentConfigurationMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteEnvironmentConfigurationMessage
Auto Trait Implementations§
impl Freeze for DeleteEnvironmentConfigurationMessage
impl RefUnwindSafe for DeleteEnvironmentConfigurationMessage
impl Send for DeleteEnvironmentConfigurationMessage
impl Sync for DeleteEnvironmentConfigurationMessage
impl Unpin for DeleteEnvironmentConfigurationMessage
impl UnwindSafe for DeleteEnvironmentConfigurationMessage
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