#[non_exhaustive]pub struct ApplicationDescription { /* private fields */ }
Expand description
Describes the properties of an application.
Implementations§
source§impl ApplicationDescription
impl ApplicationDescription
sourcepub fn application_arn(&self) -> Option<&str>
pub fn application_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the application.
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of the application.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
User-defined description of the application.
sourcepub fn date_created(&self) -> Option<&DateTime>
pub fn date_created(&self) -> Option<&DateTime>
The date when the application was created.
sourcepub fn date_updated(&self) -> Option<&DateTime>
pub fn date_updated(&self) -> Option<&DateTime>
The date when the application was last modified.
sourcepub fn configuration_templates(&self) -> Option<&[String]>
pub fn configuration_templates(&self) -> Option<&[String]>
The names of the configuration templates associated with this application.
sourcepub fn resource_lifecycle_config(
&self
) -> Option<&ApplicationResourceLifecycleConfig>
pub fn resource_lifecycle_config(
&self
) -> Option<&ApplicationResourceLifecycleConfig>
The lifecycle settings for the application.
source§impl ApplicationDescription
impl ApplicationDescription
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ApplicationDescription
.
Trait Implementations§
source§impl Clone for ApplicationDescription
impl Clone for ApplicationDescription
source§fn clone(&self) -> ApplicationDescription
fn clone(&self) -> ApplicationDescription
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 ApplicationDescription
impl Debug for ApplicationDescription
source§impl PartialEq<ApplicationDescription> for ApplicationDescription
impl PartialEq<ApplicationDescription> for ApplicationDescription
source§fn eq(&self, other: &ApplicationDescription) -> bool
fn eq(&self, other: &ApplicationDescription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.