#[non_exhaustive]pub struct ProjectDescription { /* private fields */ }Expand description
An object providing detailed information for a particular project associated with an AWS account and region.
Implementations§
source§impl ProjectDescription
impl ProjectDescription
sourcepub fn project_name(&self) -> Option<&str>
pub fn project_name(&self) -> Option<&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) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
The date when the project 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 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
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 ProjectDescription
impl Debug for ProjectDescription
source§impl PartialEq<ProjectDescription> for ProjectDescription
impl PartialEq<ProjectDescription> for ProjectDescription
source§fn eq(&self, other: &ProjectDescription) -> bool
fn eq(&self, other: &ProjectDescription) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ProjectDescription
Auto Trait Implementations§
impl RefUnwindSafe for ProjectDescription
impl Send for ProjectDescription
impl Sync for ProjectDescription
impl Unpin for ProjectDescription
impl UnwindSafe for ProjectDescription
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