Struct aws_sdk_iotfleethub::types::ApplicationSummary
source · #[non_exhaustive]pub struct ApplicationSummary {
pub application_id: String,
pub application_name: String,
pub application_description: Option<String>,
pub application_url: String,
pub application_creation_date: i64,
pub application_last_update_date: i64,
pub application_state: Option<ApplicationState>,
}
Expand description
A summary of information about a AWS IoT Device Management web application.
Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
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_id: String
The unique Id of the web application.
application_name: String
The name of the web application.
application_description: Option<String>
An optional description of the web application.
application_url: String
The URL of the web application.
application_creation_date: i64
The date (in Unix epoch time) when the web application was created.
application_last_update_date: i64
The date (in Unix epoch time) when the web application was last updated.
application_state: Option<ApplicationState>
The current state of the web application.
Implementations§
source§impl ApplicationSummary
impl ApplicationSummary
sourcepub fn application_id(&self) -> &str
pub fn application_id(&self) -> &str
The unique Id of the web application.
sourcepub fn application_name(&self) -> &str
pub fn application_name(&self) -> &str
The name of the web application.
sourcepub fn application_description(&self) -> Option<&str>
pub fn application_description(&self) -> Option<&str>
An optional description of the web application.
sourcepub fn application_url(&self) -> &str
pub fn application_url(&self) -> &str
The URL of the web application.
sourcepub fn application_creation_date(&self) -> i64
pub fn application_creation_date(&self) -> i64
The date (in Unix epoch time) when the web application was created.
sourcepub fn application_last_update_date(&self) -> i64
pub fn application_last_update_date(&self) -> i64
The date (in Unix epoch time) when the web application was last updated.
sourcepub fn application_state(&self) -> Option<&ApplicationState>
pub fn application_state(&self) -> Option<&ApplicationState>
The current state of the web application.
source§impl ApplicationSummary
impl ApplicationSummary
sourcepub fn builder() -> ApplicationSummaryBuilder
pub fn builder() -> ApplicationSummaryBuilder
Creates a new builder-style object to manufacture ApplicationSummary
.
Trait Implementations§
source§impl Clone for ApplicationSummary
impl Clone for ApplicationSummary
source§fn clone(&self) -> ApplicationSummary
fn clone(&self) -> ApplicationSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ApplicationSummary
impl Debug for ApplicationSummary
source§impl PartialEq for ApplicationSummary
impl PartialEq for ApplicationSummary
source§fn eq(&self, other: &ApplicationSummary) -> bool
fn eq(&self, other: &ApplicationSummary) -> bool
self
and other
values to be equal, and is used
by ==
.