#[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
impl StructuralPartialEq for SystemInstanceSummary
Auto Trait Implementations§
impl Freeze for SystemInstanceSummary
impl RefUnwindSafe for SystemInstanceSummary
impl Send for SystemInstanceSummary
impl Sync for SystemInstanceSummary
impl Unpin for SystemInstanceSummary
impl UnwindSafe for SystemInstanceSummary
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more