Struct aws_sdk_rekognition::types::ProjectDescription
source · #[non_exhaustive]pub struct ProjectDescription {
pub project_arn: Option<String>,
pub creation_timestamp: Option<DateTime>,
pub status: Option<ProjectStatus>,
pub datasets: Option<Vec<DatasetMetadata>>,
}
Expand description
A description of an Amazon Rekognition Custom Labels project. For more information, see DescribeProjects
.
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.project_arn: Option<String>
The Amazon Resource Name (ARN) of the project.
creation_timestamp: Option<DateTime>
The Unix timestamp for the date and time that the project was created.
status: Option<ProjectStatus>
The current status of the project.
datasets: Option<Vec<DatasetMetadata>>
Information about the training and test datasets in the project.
Implementations§
source§impl ProjectDescription
impl ProjectDescription
sourcepub fn project_arn(&self) -> Option<&str>
pub fn project_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the project.
sourcepub fn creation_timestamp(&self) -> Option<&DateTime>
pub fn creation_timestamp(&self) -> Option<&DateTime>
The Unix timestamp for the date and time that the project was created.
sourcepub fn status(&self) -> Option<&ProjectStatus>
pub fn status(&self) -> Option<&ProjectStatus>
The current status of the project.
sourcepub fn datasets(&self) -> Option<&[DatasetMetadata]>
pub fn datasets(&self) -> Option<&[DatasetMetadata]>
Information about the training and test datasets in 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