Struct aws_sdk_m2::types::DeploymentSummary
source · #[non_exhaustive]pub struct DeploymentSummary { /* private fields */ }Expand description
A subset of information about a specific deployment.
Implementations§
source§impl DeploymentSummary
impl DeploymentSummary
sourcepub fn deployment_id(&self) -> Option<&str>
pub fn deployment_id(&self) -> Option<&str>
The unique identifier of the deployment.
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The unique identifier of the application.
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
The unique identifier of the runtime environment.
sourcepub fn application_version(&self) -> Option<i32>
pub fn application_version(&self) -> Option<i32>
The version of the application.
sourcepub fn status(&self) -> Option<&DeploymentLifecycle>
pub fn status(&self) -> Option<&DeploymentLifecycle>
The current status of the deployment.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The timestamp when the deployment was created.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The reason for the reported status.
source§impl DeploymentSummary
impl DeploymentSummary
sourcepub fn builder() -> DeploymentSummaryBuilder
pub fn builder() -> DeploymentSummaryBuilder
Creates a new builder-style object to manufacture DeploymentSummary.
Trait Implementations§
source§impl Clone for DeploymentSummary
impl Clone for DeploymentSummary
source§fn clone(&self) -> DeploymentSummary
fn clone(&self) -> DeploymentSummary
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 DeploymentSummary
impl Debug for DeploymentSummary
source§impl PartialEq<DeploymentSummary> for DeploymentSummary
impl PartialEq<DeploymentSummary> for DeploymentSummary
source§fn eq(&self, other: &DeploymentSummary) -> bool
fn eq(&self, other: &DeploymentSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeploymentSummary
Auto Trait Implementations§
impl RefUnwindSafe for DeploymentSummary
impl Send for DeploymentSummary
impl Sync for DeploymentSummary
impl Unpin for DeploymentSummary
impl UnwindSafe for DeploymentSummary
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