#[non_exhaustive]pub struct ProjectDescription {
    pub arn: Option<String>,
    pub project_name: String,
    pub description: Option<String>,
    pub created_date: DateTime,
    pub updated_date: DateTime,
    pub placement_template: Option<PlacementTemplate>,
    pub tags: Option<HashMap<String, String>>,
}Expand description
An object providing detailed information for a particular project associated with an AWS account and region.
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.arn: Option<String>The ARN of the project.
project_name: StringThe name of the project for which to obtain information from.
description: Option<String>The description of the project.
created_date: DateTimeThe date when the project was originally created, in UNIX epoch time format.
updated_date: DateTimeThe date when the project was last updated, in UNIX epoch time format. If the project was not updated, then createdDate and updatedDate are the same.
placement_template: Option<PlacementTemplate>An object describing the project's placement specifications.
The tags (metadata key/value pairs) associated with the project.
Implementations§
source§impl ProjectDescription
 
impl ProjectDescription
sourcepub fn project_name(&self) -> &str
 
pub fn project_name(&self) -> &str
The name of the project for which to obtain information from.
sourcepub fn description(&self) -> Option<&str>
 
pub fn description(&self) -> Option<&str>
The description of the project.
sourcepub fn created_date(&self) -> &DateTime
 
pub fn created_date(&self) -> &DateTime
The date when the project was originally created, in UNIX epoch time format.
sourcepub fn updated_date(&self) -> &DateTime
 
pub fn updated_date(&self) -> &DateTime
The date when the project was last updated, in UNIX epoch time format. If the project was not updated, then createdDate and updatedDate are the same.
sourcepub fn placement_template(&self) -> Option<&PlacementTemplate>
 
pub fn placement_template(&self) -> Option<&PlacementTemplate>
An object describing the project's placement specifications.
The tags (metadata key/value pairs) associated with the project.
source§impl ProjectDescription
 
impl ProjectDescription
sourcepub fn builder() -> ProjectDescriptionBuilder
 
pub fn builder() -> ProjectDescriptionBuilder
Creates a new builder-style object to manufacture ProjectDescription.
Trait Implementations§
source§impl Clone for ProjectDescription
 
impl Clone for ProjectDescription
source§fn clone(&self) -> ProjectDescription
 
fn clone(&self) -> ProjectDescription
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ProjectDescription
 
impl Debug for ProjectDescription
source§impl PartialEq for ProjectDescription
 
impl PartialEq for ProjectDescription
source§fn eq(&self, other: &ProjectDescription) -> bool
 
fn eq(&self, other: &ProjectDescription) -> bool
self and other values to be equal, and is used
by ==.