pub struct DeleteDeploymentGroupOutput {
pub hooks_not_cleaned_up: Option<Vec<AutoScalingGroup>>,
}
Expand description
Represents the output of a DeleteDeploymentGroup
operation.
Fields§
§hooks_not_cleaned_up: Option<Vec<AutoScalingGroup>>
If the output contains no data, and the corresponding deployment group contained at least one Auto Scaling group, AWS CodeDeploy successfully removed all corresponding Auto Scaling lifecycle event hooks from the Amazon EC2 instances in the Auto Scaling group. If the output contains data, AWS CodeDeploy could not remove some Auto Scaling lifecycle event hooks from the Amazon EC2 instances in the Auto Scaling group.
Trait Implementations§
Source§impl Clone for DeleteDeploymentGroupOutput
impl Clone for DeleteDeploymentGroupOutput
Source§fn clone(&self) -> DeleteDeploymentGroupOutput
fn clone(&self) -> DeleteDeploymentGroupOutput
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 DeleteDeploymentGroupOutput
impl Debug for DeleteDeploymentGroupOutput
Source§impl Default for DeleteDeploymentGroupOutput
impl Default for DeleteDeploymentGroupOutput
Source§fn default() -> DeleteDeploymentGroupOutput
fn default() -> DeleteDeploymentGroupOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteDeploymentGroupOutput
impl<'de> Deserialize<'de> for DeleteDeploymentGroupOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for DeleteDeploymentGroupOutput
Auto Trait Implementations§
impl Freeze for DeleteDeploymentGroupOutput
impl RefUnwindSafe for DeleteDeploymentGroupOutput
impl Send for DeleteDeploymentGroupOutput
impl Sync for DeleteDeploymentGroupOutput
impl Unpin for DeleteDeploymentGroupOutput
impl UnwindSafe for DeleteDeploymentGroupOutput
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