#[non_exhaustive]pub struct SystemInstanceSummary {
pub id: Option<String>,
pub arn: Option<String>,
pub status: Option<SystemInstanceDeploymentStatus>,
pub target: Option<DeploymentTarget>,
pub greengrass_group_name: Option<String>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
pub greengrass_group_id: Option<String>,
pub greengrass_group_version_id: Option<String>,
}
Expand description
An object that contains summary information about a system instance.
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.id: Option<String>
The ID of the system instance.
arn: Option<String>
The ARN of the system instance.
status: Option<SystemInstanceDeploymentStatus>
The status of the system instance.
target: Option<DeploymentTarget>
The target of the system instance.
greengrass_group_name: Option<String>
The ID of the Greengrass group where the system instance is deployed.
created_at: Option<DateTime>
The date when the system instance was created.
updated_at: Option<DateTime>
The date and time when the system instance was last updated.
greengrass_group_id: Option<String>
The ID of the Greengrass group where the system instance is deployed.
greengrass_group_version_id: Option<String>
The version of the Greengrass group where the system instance is deployed.
Implementations§
source§impl SystemInstanceSummary
impl SystemInstanceSummary
sourcepub fn status(&self) -> Option<&SystemInstanceDeploymentStatus>
pub fn status(&self) -> Option<&SystemInstanceDeploymentStatus>
The status of the system instance.
sourcepub fn target(&self) -> Option<&DeploymentTarget>
pub fn target(&self) -> Option<&DeploymentTarget>
The target of the system instance.
sourcepub fn greengrass_group_name(&self) -> Option<&str>
pub fn greengrass_group_name(&self) -> Option<&str>
The ID of the Greengrass group where the system instance is deployed.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The date when the system instance was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The date and time when the system instance was last updated.
sourcepub fn greengrass_group_id(&self) -> Option<&str>
pub fn greengrass_group_id(&self) -> Option<&str>
The ID of the Greengrass group where the system instance is deployed.
sourcepub fn greengrass_group_version_id(&self) -> Option<&str>
pub fn greengrass_group_version_id(&self) -> Option<&str>
The version of the Greengrass group where the system instance is deployed.
source§impl SystemInstanceSummary
impl SystemInstanceSummary
sourcepub fn builder() -> SystemInstanceSummaryBuilder
pub fn builder() -> SystemInstanceSummaryBuilder
Creates a new builder-style object to manufacture SystemInstanceSummary
.
Trait Implementations§
source§impl Clone for SystemInstanceSummary
impl Clone for SystemInstanceSummary
source§fn clone(&self) -> SystemInstanceSummary
fn clone(&self) -> SystemInstanceSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SystemInstanceSummary
impl Debug for SystemInstanceSummary
source§impl PartialEq for SystemInstanceSummary
impl PartialEq for SystemInstanceSummary
source§fn eq(&self, other: &SystemInstanceSummary) -> bool
fn eq(&self, other: &SystemInstanceSummary) -> bool
self
and other
values to be equal, and is used
by ==
.