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 ==.impl StructuralPartialEq for FleetSummary
Auto Trait Implementations§
impl Freeze for FleetSummary
impl RefUnwindSafe for FleetSummary
impl Send for FleetSummary
impl Sync for FleetSummary
impl Unpin for FleetSummary
impl UnwindSafe for FleetSummary
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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