Struct aws_sdk_mobile::types::ProjectDetails
source · #[non_exhaustive]pub struct ProjectDetails { /* private fields */ }
Expand description
Detailed information about an AWS Mobile Hub project.
Implementations§
source§impl ProjectDetails
impl ProjectDetails
sourcepub fn project_id(&self) -> Option<&str>
pub fn project_id(&self) -> Option<&str>
Unique project identifier.
sourcepub fn region(&self) -> Option<&str>
pub fn region(&self) -> Option<&str>
Default region to use for AWS resource creation in the AWS Mobile Hub project.
sourcepub fn state(&self) -> Option<&ProjectState>
pub fn state(&self) -> Option<&ProjectState>
Synchronization state for a project.
sourcepub fn created_date(&self) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
Date the project was created.
sourcepub fn last_updated_date(&self) -> Option<&DateTime>
pub fn last_updated_date(&self) -> Option<&DateTime>
Date of the last modification of the project.
sourcepub fn console_url(&self) -> Option<&str>
pub fn console_url(&self) -> Option<&str>
Website URL for this project in the AWS Mobile Hub console.
source§impl ProjectDetails
impl ProjectDetails
sourcepub fn builder() -> ProjectDetailsBuilder
pub fn builder() -> ProjectDetailsBuilder
Creates a new builder-style object to manufacture ProjectDetails
.
Trait Implementations§
source§impl Clone for ProjectDetails
impl Clone for ProjectDetails
source§fn clone(&self) -> ProjectDetails
fn clone(&self) -> ProjectDetails
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 ProjectDetails
impl Debug for ProjectDetails
source§impl PartialEq<ProjectDetails> for ProjectDetails
impl PartialEq<ProjectDetails> for ProjectDetails
source§fn eq(&self, other: &ProjectDetails) -> bool
fn eq(&self, other: &ProjectDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ProjectDetails
Auto Trait Implementations§
impl RefUnwindSafe for ProjectDetails
impl Send for ProjectDetails
impl Sync for ProjectDetails
impl Unpin for ProjectDetails
impl UnwindSafe for ProjectDetails
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