#[non_exhaustive]pub struct ApplicationDescription {
pub application_arn: Option<String>,
pub application_name: Option<String>,
pub description: Option<String>,
pub date_created: Option<DateTime>,
pub date_updated: Option<DateTime>,
pub versions: Option<Vec<String>>,
pub configuration_templates: Option<Vec<String>>,
pub resource_lifecycle_config: Option<ApplicationResourceLifecycleConfig>,
}
Expand description
Describes the properties of an application.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_arn: Option<String>
The Amazon Resource Name (ARN) of the application.
application_name: Option<String>
The name of the application.
description: Option<String>
User-defined description of the application.
date_created: Option<DateTime>
The date when the application was created.
date_updated: Option<DateTime>
The date when the application was last modified.
versions: Option<Vec<String>>
The names of the versions for this application.
configuration_templates: Option<Vec<String>>
The names of the configuration templates associated with this application.
resource_lifecycle_config: Option<ApplicationResourceLifecycleConfig>
The lifecycle settings for the 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() -> ApplicationDescriptionBuilder
pub fn builder() -> ApplicationDescriptionBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self
and other
values to be equal, and is used
by ==
.