Struct aws_sdk_codedeploy::types::RelatedDeployments
source · #[non_exhaustive]pub struct RelatedDeployments {
pub auto_update_outdated_instances_root_deployment_id: Option<String>,
pub auto_update_outdated_instances_deployment_ids: Option<Vec<String>>,
}
Expand description
Information about deployments related to the specified deployment.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.auto_update_outdated_instances_root_deployment_id: Option<String>
The deployment ID of the root deployment that triggered this deployment.
auto_update_outdated_instances_deployment_ids: Option<Vec<String>>
The deployment IDs of 'auto-update outdated instances' deployments triggered by this deployment.
Implementations§
source§impl RelatedDeployments
impl RelatedDeployments
sourcepub fn auto_update_outdated_instances_root_deployment_id(&self) -> Option<&str>
pub fn auto_update_outdated_instances_root_deployment_id(&self) -> Option<&str>
The deployment ID of the root deployment that triggered this deployment.
sourcepub fn auto_update_outdated_instances_deployment_ids(&self) -> &[String]
pub fn auto_update_outdated_instances_deployment_ids(&self) -> &[String]
The deployment IDs of 'auto-update outdated instances' deployments triggered by this deployment.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .auto_update_outdated_instances_deployment_ids.is_none()
.
source§impl RelatedDeployments
impl RelatedDeployments
sourcepub fn builder() -> RelatedDeploymentsBuilder
pub fn builder() -> RelatedDeploymentsBuilder
Creates a new builder-style object to manufacture RelatedDeployments
.
Trait Implementations§
source§impl Clone for RelatedDeployments
impl Clone for RelatedDeployments
source§fn clone(&self) -> RelatedDeployments
fn clone(&self) -> RelatedDeployments
Returns a copy 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 RelatedDeployments
impl Debug for RelatedDeployments
source§impl PartialEq for RelatedDeployments
impl PartialEq for RelatedDeployments
source§fn eq(&self, other: &RelatedDeployments) -> bool
fn eq(&self, other: &RelatedDeployments) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RelatedDeployments
Auto Trait Implementations§
impl RefUnwindSafe for RelatedDeployments
impl Send for RelatedDeployments
impl Sync for RelatedDeployments
impl Unpin for RelatedDeployments
impl UnwindSafe for RelatedDeployments
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
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>
Creates a shared type from an unshared type.