#[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
The Amazon Resource Name (ARN) of the application.
The name of the application.
User-defined description of the application.
The date when the application was created.
The date when the application was last modified.
The names of the configuration templates associated with this application.
The lifecycle settings for the application.
Creates a new builder-style object to manufacture ApplicationDescription
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ApplicationDescription
impl Send for ApplicationDescription
impl Sync for ApplicationDescription
impl Unpin for ApplicationDescription
impl UnwindSafe for ApplicationDescription
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more