#[non_exhaustive]pub struct DeleteDeploymentGroupOutput {
pub hooks_not_cleaned_up: Option<Vec<AutoScalingGroup>>,
/* private fields */
}
Expand description
Represents the output of a DeleteDeploymentGroup
operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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, 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, CodeDeploy could not remove some Auto Scaling lifecycle event hooks from the Amazon EC2 instances in the Auto Scaling group.
Implementations§
source§impl DeleteDeploymentGroupOutput
impl DeleteDeploymentGroupOutput
sourcepub fn hooks_not_cleaned_up(&self) -> &[AutoScalingGroup]
pub fn hooks_not_cleaned_up(&self) -> &[AutoScalingGroup]
If the output contains no data, and the corresponding deployment group contained at least one Auto Scaling group, 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, CodeDeploy could not remove some Auto Scaling lifecycle event hooks from the Amazon EC2 instances in the Auto Scaling group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .hooks_not_cleaned_up.is_none()
.
source§impl DeleteDeploymentGroupOutput
impl DeleteDeploymentGroupOutput
sourcepub fn builder() -> DeleteDeploymentGroupOutputBuilder
pub fn builder() -> DeleteDeploymentGroupOutputBuilder
Creates a new builder-style object to manufacture DeleteDeploymentGroupOutput
.
Trait Implementations§
source§impl Clone for DeleteDeploymentGroupOutput
impl Clone for DeleteDeploymentGroupOutput
source§fn clone(&self) -> DeleteDeploymentGroupOutput
fn clone(&self) -> DeleteDeploymentGroupOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteDeploymentGroupOutput
impl Debug for DeleteDeploymentGroupOutput
source§impl PartialEq for DeleteDeploymentGroupOutput
impl PartialEq for DeleteDeploymentGroupOutput
source§fn eq(&self, other: &DeleteDeploymentGroupOutput) -> bool
fn eq(&self, other: &DeleteDeploymentGroupOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeleteDeploymentGroupOutput
impl RequestId for DeleteDeploymentGroupOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more