pub struct ApplicationDescription {
pub application_arn: Option<String>,
pub application_name: Option<String>,
pub configuration_templates: Option<Vec<String>>,
pub date_created: Option<String>,
pub date_updated: Option<String>,
pub description: Option<String>,
pub resource_lifecycle_config: Option<ApplicationResourceLifecycleConfig>,
pub versions: Option<Vec<String>>,
}
Expand description
Describes the properties of an application.
Fields§
§application_arn: Option<String>
The Amazon Resource Name (ARN) of the application.
application_name: Option<String>
The name of the application.
configuration_templates: Option<Vec<String>>
The names of the configuration templates associated with this application.
date_created: Option<String>
The date when the application was created.
date_updated: Option<String>
The date when the application was last modified.
description: Option<String>
User-defined description of the application.
resource_lifecycle_config: Option<ApplicationResourceLifecycleConfig>
The lifecycle settings for the application.
versions: Option<Vec<String>>
The names of the versions for this application.
Trait Implementations§
Source§impl Clone for ApplicationDescription
impl Clone for ApplicationDescription
Source§fn clone(&self) -> ApplicationDescription
fn clone(&self) -> ApplicationDescription
Returns a duplicate 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 Default for ApplicationDescription
impl Default for ApplicationDescription
Source§fn default() -> ApplicationDescription
fn default() -> ApplicationDescription
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApplicationDescription
impl PartialEq for ApplicationDescription
impl StructuralPartialEq for ApplicationDescription
Auto Trait Implementations§
impl Freeze for ApplicationDescription
impl RefUnwindSafe for ApplicationDescription
impl Send for ApplicationDescription
impl Sync for ApplicationDescription
impl Unpin for ApplicationDescription
impl UnwindSafe for ApplicationDescription
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