#[non_exhaustive]pub struct GetApplicationVersionOutput {
pub name: Option<String>,
pub application_version: Option<i32>,
pub description: Option<String>,
pub definition_content: Option<String>,
pub status: Option<ApplicationVersionLifecycle>,
pub creation_time: Option<DateTime>,
pub status_reason: Option<String>,
/* private fields */
}
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.name: Option<String>
The name of the application version.
application_version: Option<i32>
The specific version of the application.
description: Option<String>
The application description.
definition_content: Option<String>
The content of the application definition. This is a JSON object that contains the resource configuration and definitions that identify an application.
status: Option<ApplicationVersionLifecycle>
The status of the application version.
creation_time: Option<DateTime>
The timestamp when the application version was created.
status_reason: Option<String>
The reason for the reported status.
Implementations§
source§impl GetApplicationVersionOutput
impl GetApplicationVersionOutput
sourcepub fn application_version(&self) -> Option<i32>
pub fn application_version(&self) -> Option<i32>
The specific version of the application.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The application description.
sourcepub fn definition_content(&self) -> Option<&str>
pub fn definition_content(&self) -> Option<&str>
The content of the application definition. This is a JSON object that contains the resource configuration and definitions that identify an application.
sourcepub fn status(&self) -> Option<&ApplicationVersionLifecycle>
pub fn status(&self) -> Option<&ApplicationVersionLifecycle>
The status of the application version.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The timestamp when the application version was created.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The reason for the reported status.
source§impl GetApplicationVersionOutput
impl GetApplicationVersionOutput
sourcepub fn builder() -> GetApplicationVersionOutputBuilder
pub fn builder() -> GetApplicationVersionOutputBuilder
Creates a new builder-style object to manufacture GetApplicationVersionOutput
.
Trait Implementations§
source§impl Clone for GetApplicationVersionOutput
impl Clone for GetApplicationVersionOutput
source§fn clone(&self) -> GetApplicationVersionOutput
fn clone(&self) -> GetApplicationVersionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetApplicationVersionOutput
impl Debug for GetApplicationVersionOutput
source§impl PartialEq<GetApplicationVersionOutput> for GetApplicationVersionOutput
impl PartialEq<GetApplicationVersionOutput> for GetApplicationVersionOutput
source§fn eq(&self, other: &GetApplicationVersionOutput) -> bool
fn eq(&self, other: &GetApplicationVersionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetApplicationVersionOutput
impl RequestId for GetApplicationVersionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.