#[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
sourceimpl 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.
sourceimpl ApplicationDescription
impl ApplicationDescription
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ApplicationDescription
Trait Implementations
sourceimpl Clone for ApplicationDescription
impl Clone for ApplicationDescription
sourcefn clone(&self) -> ApplicationDescription
fn clone(&self) -> ApplicationDescription
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ApplicationDescription
impl Debug for ApplicationDescription
sourceimpl PartialEq<ApplicationDescription> for ApplicationDescription
impl PartialEq<ApplicationDescription> for ApplicationDescription
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &ApplicationDescription) -> bool
fn ne(&self, other: &ApplicationDescription) -> bool
This method tests for !=
.
impl StructuralPartialEq for ApplicationDescription
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more