Struct aws_sdk_omics::types::AnnotationStoreVersionItem
source · #[non_exhaustive]pub struct AnnotationStoreVersionItem {
pub store_id: Option<String>,
pub id: Option<String>,
pub status: Option<VersionStatus>,
pub version_arn: Option<String>,
pub name: Option<String>,
pub version_name: Option<String>,
pub description: Option<String>,
pub creation_time: Option<DateTime>,
pub update_time: Option<DateTime>,
pub status_message: Option<String>,
pub version_size_bytes: Option<i64>,
}
Expand description
Annotation store versions.
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.store_id: Option<String>
The store ID for an annotation store version.
id: Option<String>
The annotation store version ID.
status: Option<VersionStatus>
The status of an annotation store version.
version_arn: Option<String>
The Arn for an annotation store version.
name: Option<String>
A name given to an annotation store version to distinguish it from others.
version_name: Option<String>
The name of an annotation store version.
description: Option<String>
The description of an annotation store version.
creation_time: Option<DateTime>
The time stamp for when an annotation store version was created.
update_time: Option<DateTime>
The time stamp for when an annotation store version was updated.
status_message: Option<String>
The status of an annotation store version.
version_size_bytes: Option<i64>
The size of an annotation store version in Bytes.
Implementations§
source§impl AnnotationStoreVersionItem
impl AnnotationStoreVersionItem
sourcepub fn status(&self) -> Option<&VersionStatus>
pub fn status(&self) -> Option<&VersionStatus>
The status of an annotation store version.
sourcepub fn version_arn(&self) -> Option<&str>
pub fn version_arn(&self) -> Option<&str>
The Arn for an annotation store version.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
A name given to an annotation store version to distinguish it from others.
sourcepub fn version_name(&self) -> Option<&str>
pub fn version_name(&self) -> Option<&str>
The name of an annotation store version.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of an annotation store version.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time stamp for when an annotation store version was created.
sourcepub fn update_time(&self) -> Option<&DateTime>
pub fn update_time(&self) -> Option<&DateTime>
The time stamp for when an annotation store version was updated.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
The status of an annotation store version.
sourcepub fn version_size_bytes(&self) -> Option<i64>
pub fn version_size_bytes(&self) -> Option<i64>
The size of an annotation store version in Bytes.
source§impl AnnotationStoreVersionItem
impl AnnotationStoreVersionItem
sourcepub fn builder() -> AnnotationStoreVersionItemBuilder
pub fn builder() -> AnnotationStoreVersionItemBuilder
Creates a new builder-style object to manufacture AnnotationStoreVersionItem
.
Trait Implementations§
source§impl Clone for AnnotationStoreVersionItem
impl Clone for AnnotationStoreVersionItem
source§fn clone(&self) -> AnnotationStoreVersionItem
fn clone(&self) -> AnnotationStoreVersionItem
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AnnotationStoreVersionItem
impl Debug for AnnotationStoreVersionItem
source§impl PartialEq for AnnotationStoreVersionItem
impl PartialEq for AnnotationStoreVersionItem
source§fn eq(&self, other: &AnnotationStoreVersionItem) -> bool
fn eq(&self, other: &AnnotationStoreVersionItem) -> bool
self
and other
values to be equal, and is used
by ==
.