Struct aws_sdk_iot1clickprojects::types::PlacementSummary  
source · #[non_exhaustive]pub struct PlacementSummary {
    pub project_name: Option<String>,
    pub placement_name: Option<String>,
    pub created_date: Option<DateTime>,
    pub updated_date: Option<DateTime>,
}Expand description
An object providing summary information for a particular placement.
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.project_name: Option<String>The name of the project containing the placement.
placement_name: Option<String>The name of the placement being summarized.
created_date: Option<DateTime>The date when the placement was originally created, in UNIX epoch time format.
updated_date: Option<DateTime>The date when the placement was last updated, in UNIX epoch time format. If the placement was not updated, then createdDate and updatedDate are the same.
Implementations§
source§impl PlacementSummary
 
impl PlacementSummary
sourcepub fn project_name(&self) -> Option<&str>
 
pub fn project_name(&self) -> Option<&str>
The name of the project containing the placement.
sourcepub fn placement_name(&self) -> Option<&str>
 
pub fn placement_name(&self) -> Option<&str>
The name of the placement being summarized.
sourcepub fn created_date(&self) -> Option<&DateTime>
 
pub fn created_date(&self) -> Option<&DateTime>
The date when the placement was originally created, in UNIX epoch time format.
sourcepub fn updated_date(&self) -> Option<&DateTime>
 
pub fn updated_date(&self) -> Option<&DateTime>
The date when the placement was last updated, in UNIX epoch time format. If the placement was not updated, then createdDate and updatedDate are the same.
source§impl PlacementSummary
 
impl PlacementSummary
sourcepub fn builder() -> PlacementSummaryBuilder
 
pub fn builder() -> PlacementSummaryBuilder
Creates a new builder-style object to manufacture PlacementSummary.
Trait Implementations§
source§impl Clone for PlacementSummary
 
impl Clone for PlacementSummary
source§fn clone(&self) -> PlacementSummary
 
fn clone(&self) -> PlacementSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PlacementSummary
 
impl Debug for PlacementSummary
source§impl PartialEq<PlacementSummary> for PlacementSummary
 
impl PartialEq<PlacementSummary> for PlacementSummary
source§fn eq(&self, other: &PlacementSummary) -> bool
 
fn eq(&self, other: &PlacementSummary) -> bool
self and other values to be equal, and is used
by ==.