Struct aws_sdk_iotfleetwise::operation::get_fleet::GetFleetOutput
source · #[non_exhaustive]pub struct GetFleetOutput {
pub id: Option<String>,
pub arn: Option<String>,
pub description: Option<String>,
pub signal_catalog_arn: Option<String>,
pub creation_time: Option<DateTime>,
pub last_modification_time: Option<DateTime>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
The ID of the fleet.
arn: Option<String>
The Amazon Resource Name (ARN) of the fleet.
description: Option<String>
A brief description of the fleet.
signal_catalog_arn: Option<String>
The ARN of a signal catalog associated with the fleet.
creation_time: Option<DateTime>
The 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 GetFleetOutput
impl GetFleetOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the fleet.
sourcepub fn signal_catalog_arn(&self) -> Option<&str>
pub fn signal_catalog_arn(&self) -> Option<&str>
The ARN of a signal catalog associated with the fleet.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&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 GetFleetOutput
impl GetFleetOutput
sourcepub fn builder() -> GetFleetOutputBuilder
pub fn builder() -> GetFleetOutputBuilder
Creates a new builder-style object to manufacture GetFleetOutput
.
Trait Implementations§
source§impl Clone for GetFleetOutput
impl Clone for GetFleetOutput
source§fn clone(&self) -> GetFleetOutput
fn clone(&self) -> GetFleetOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetFleetOutput
impl Debug for GetFleetOutput
source§impl PartialEq<GetFleetOutput> for GetFleetOutput
impl PartialEq<GetFleetOutput> for GetFleetOutput
source§fn eq(&self, other: &GetFleetOutput) -> bool
fn eq(&self, other: &GetFleetOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetFleetOutput
impl RequestId for GetFleetOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetFleetOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetFleetOutput
impl Send for GetFleetOutput
impl Sync for GetFleetOutput
impl Unpin for GetFleetOutput
impl UnwindSafe for GetFleetOutput
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
Mutably borrows from an owned value. Read more