#[non_exhaustive]pub struct ArchiveApplicationOutput {
pub application_id: Option<String>,
pub arn: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub is_archived: Option<bool>,
pub application_aggregated_status: Option<ApplicationAggregatedStatus>,
pub creation_date_time: Option<String>,
pub last_modified_date_time: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub wave_id: Option<String>,
/* private fields */
}
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.application_id: Option<String>
Application ID.
arn: Option<String>
Application ARN.
name: Option<String>
Application name.
description: Option<String>
Application description.
is_archived: Option<bool>
Application archival status.
application_aggregated_status: Option<ApplicationAggregatedStatus>
Application aggregated status.
creation_date_time: Option<String>
Application creation dateTime.
last_modified_date_time: Option<String>
Application last modified dateTime.
Application tags.
wave_id: Option<String>
Application wave ID.
Implementations§
source§impl ArchiveApplicationOutput
impl ArchiveApplicationOutput
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
Application ID.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Application description.
sourcepub fn is_archived(&self) -> Option<bool>
pub fn is_archived(&self) -> Option<bool>
Application archival status.
sourcepub fn application_aggregated_status(
&self
) -> Option<&ApplicationAggregatedStatus>
pub fn application_aggregated_status( &self ) -> Option<&ApplicationAggregatedStatus>
Application aggregated status.
sourcepub fn creation_date_time(&self) -> Option<&str>
pub fn creation_date_time(&self) -> Option<&str>
Application creation dateTime.
sourcepub fn last_modified_date_time(&self) -> Option<&str>
pub fn last_modified_date_time(&self) -> Option<&str>
Application last modified dateTime.
Application tags.
source§impl ArchiveApplicationOutput
impl ArchiveApplicationOutput
sourcepub fn builder() -> ArchiveApplicationOutputBuilder
pub fn builder() -> ArchiveApplicationOutputBuilder
Creates a new builder-style object to manufacture ArchiveApplicationOutput
.
Trait Implementations§
source§impl Clone for ArchiveApplicationOutput
impl Clone for ArchiveApplicationOutput
source§fn clone(&self) -> ArchiveApplicationOutput
fn clone(&self) -> ArchiveApplicationOutput
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 ArchiveApplicationOutput
impl Debug for ArchiveApplicationOutput
source§impl PartialEq for ArchiveApplicationOutput
impl PartialEq for ArchiveApplicationOutput
source§fn eq(&self, other: &ArchiveApplicationOutput) -> bool
fn eq(&self, other: &ArchiveApplicationOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ArchiveApplicationOutput
impl RequestId for ArchiveApplicationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for ArchiveApplicationOutput
Auto Trait Implementations§
impl RefUnwindSafe for ArchiveApplicationOutput
impl Send for ArchiveApplicationOutput
impl Sync for ArchiveApplicationOutput
impl Unpin for ArchiveApplicationOutput
impl UnwindSafe for ArchiveApplicationOutput
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.