Struct aws_sdk_iotfleetwise::types::FleetSummary
source · #[non_exhaustive]pub struct FleetSummary {
pub id: String,
pub arn: String,
pub description: Option<String>,
pub signal_catalog_arn: String,
pub creation_time: DateTime,
pub last_modification_time: Option<DateTime>,
}Expand description
Information about a fleet.
You can use the API operation to return this information about multiple fleets.
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: StringThe unique ID of the fleet.
arn: StringThe Amazon Resource Name (ARN) of the fleet.
description: Option<String>A brief description of the fleet.
signal_catalog_arn: StringThe ARN of the signal catalog associated with the fleet.
creation_time: DateTimeThe time the fleet was created, in seconds since epoch (January 1, 1970 at midnight UTC time).
last_modification_time: Option<DateTime>The time the fleet was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).
Implementations§
source§impl FleetSummary
impl FleetSummary
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the fleet.
sourcepub fn signal_catalog_arn(&self) -> &str
pub fn signal_catalog_arn(&self) -> &str
The ARN of the signal catalog associated with the fleet.
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
The time the fleet was created, in seconds since epoch (January 1, 1970 at midnight UTC time).
sourcepub fn last_modification_time(&self) -> Option<&DateTime>
pub fn last_modification_time(&self) -> Option<&DateTime>
The time the fleet was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).
source§impl FleetSummary
impl FleetSummary
sourcepub fn builder() -> FleetSummaryBuilder
pub fn builder() -> FleetSummaryBuilder
Creates a new builder-style object to manufacture FleetSummary.
Trait Implementations§
source§impl Clone for FleetSummary
impl Clone for FleetSummary
source§fn clone(&self) -> FleetSummary
fn clone(&self) -> FleetSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for FleetSummary
impl Debug for FleetSummary
source§impl PartialEq for FleetSummary
impl PartialEq for FleetSummary
source§fn eq(&self, other: &FleetSummary) -> bool
fn eq(&self, other: &FleetSummary) -> bool
self and other values to be equal, and is used
by ==.