pub struct UpdateDeploymentGroupOutput {
pub hooks_not_cleaned_up: Option<Vec<AutoScalingGroup>>,
}
Expand description
Represents the output of an UpdateDeploymentGroup
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 AWS account. If the output contains data, AWS CodeDeploy could not remove some Auto Scaling lifecycle event hooks from the AWS account.
Trait Implementations§
Source§impl Clone for UpdateDeploymentGroupOutput
impl Clone for UpdateDeploymentGroupOutput
Source§fn clone(&self) -> UpdateDeploymentGroupOutput
fn clone(&self) -> UpdateDeploymentGroupOutput
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 UpdateDeploymentGroupOutput
impl Debug for UpdateDeploymentGroupOutput
Source§impl Default for UpdateDeploymentGroupOutput
impl Default for UpdateDeploymentGroupOutput
Source§fn default() -> UpdateDeploymentGroupOutput
fn default() -> UpdateDeploymentGroupOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateDeploymentGroupOutput
impl<'de> Deserialize<'de> for UpdateDeploymentGroupOutput
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 UpdateDeploymentGroupOutput
Auto Trait Implementations§
impl Freeze for UpdateDeploymentGroupOutput
impl RefUnwindSafe for UpdateDeploymentGroupOutput
impl Send for UpdateDeploymentGroupOutput
impl Sync for UpdateDeploymentGroupOutput
impl Unpin for UpdateDeploymentGroupOutput
impl UnwindSafe for UpdateDeploymentGroupOutput
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