#[non_exhaustive]pub struct CreateApplicationOutput {
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 CreateApplicationOutput
impl CreateApplicationOutput
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 CreateApplicationOutput
impl CreateApplicationOutput
sourcepub fn builder() -> CreateApplicationOutputBuilder
pub fn builder() -> CreateApplicationOutputBuilder
Creates a new builder-style object to manufacture CreateApplicationOutput.
Trait Implementations§
source§impl Clone for CreateApplicationOutput
impl Clone for CreateApplicationOutput
source§fn clone(&self) -> CreateApplicationOutput
fn clone(&self) -> CreateApplicationOutput
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 CreateApplicationOutput
impl Debug for CreateApplicationOutput
source§impl PartialEq for CreateApplicationOutput
impl PartialEq for CreateApplicationOutput
source§fn eq(&self, other: &CreateApplicationOutput) -> bool
fn eq(&self, other: &CreateApplicationOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateApplicationOutput
impl RequestId for CreateApplicationOutput
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 CreateApplicationOutput
Auto Trait Implementations§
impl Freeze for CreateApplicationOutput
impl RefUnwindSafe for CreateApplicationOutput
impl Send for CreateApplicationOutput
impl Sync for CreateApplicationOutput
impl Unpin for CreateApplicationOutput
impl UnwindSafe for CreateApplicationOutput
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.