#[non_exhaustive]pub struct GetSignalCatalogOutput {
pub name: Option<String>,
pub arn: Option<String>,
pub description: Option<String>,
pub node_counts: Option<NodeCounts>,
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.name: Option<String>
The name of the signal catalog.
arn: Option<String>
The Amazon Resource Name (ARN) of the signal catalog.
description: Option<String>
A brief description of the signal catalog.
node_counts: Option<NodeCounts>
The total number of network nodes specified in a signal catalog.
creation_time: Option<DateTime>
The time the signal catalog was created in seconds since epoch (January 1, 1970 at midnight UTC time).
last_modification_time: Option<DateTime>
The last time the signal catalog was modified.
Implementations§
source§impl GetSignalCatalogOutput
impl GetSignalCatalogOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the signal catalog.
sourcepub fn node_counts(&self) -> Option<&NodeCounts>
pub fn node_counts(&self) -> Option<&NodeCounts>
The total number of network nodes specified in a signal catalog.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time the signal catalog 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 last time the signal catalog was modified.
source§impl GetSignalCatalogOutput
impl GetSignalCatalogOutput
sourcepub fn builder() -> GetSignalCatalogOutputBuilder
pub fn builder() -> GetSignalCatalogOutputBuilder
Creates a new builder-style object to manufacture GetSignalCatalogOutput
.
Trait Implementations§
source§impl Clone for GetSignalCatalogOutput
impl Clone for GetSignalCatalogOutput
source§fn clone(&self) -> GetSignalCatalogOutput
fn clone(&self) -> GetSignalCatalogOutput
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 GetSignalCatalogOutput
impl Debug for GetSignalCatalogOutput
source§impl PartialEq<GetSignalCatalogOutput> for GetSignalCatalogOutput
impl PartialEq<GetSignalCatalogOutput> for GetSignalCatalogOutput
source§fn eq(&self, other: &GetSignalCatalogOutput) -> bool
fn eq(&self, other: &GetSignalCatalogOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetSignalCatalogOutput
impl RequestId for GetSignalCatalogOutput
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 GetSignalCatalogOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetSignalCatalogOutput
impl Send for GetSignalCatalogOutput
impl Sync for GetSignalCatalogOutput
impl Unpin for GetSignalCatalogOutput
impl UnwindSafe for GetSignalCatalogOutput
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