Struct aws_sdk_omics::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput
source · #[non_exhaustive]pub struct GetAnnotationStoreVersionOutput {Show 13 fields
pub store_id: String,
pub id: String,
pub status: VersionStatus,
pub version_arn: String,
pub name: String,
pub version_name: String,
pub description: String,
pub creation_time: DateTime,
pub update_time: DateTime,
pub tags: HashMap<String, String>,
pub version_options: Option<VersionOptions>,
pub status_message: String,
pub version_size_bytes: i64,
/* private fields */
}
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: String
The store ID for annotation store version.
id: String
The annotation store version ID.
status: VersionStatus
The status of an annotation store version.
version_arn: String
The Arn for the annotation store.
name: String
The name of the annotation store.
version_name: String
The name given to an annotation store version to distinguish it from others.
description: String
The description for an annotation store version.
creation_time: DateTime
The time stamp for when an annotation store version was created.
update_time: DateTime
The time stamp for when an annotation store version was updated.
Any tags associated with an annotation store version.
version_options: Option<VersionOptions>
The options for an annotation store version.
status_message: String
The status of an annotation store version.
version_size_bytes: i64
The size of the annotation store version in Bytes.
Implementations§
source§impl GetAnnotationStoreVersionOutput
impl GetAnnotationStoreVersionOutput
sourcepub fn status(&self) -> &VersionStatus
pub fn status(&self) -> &VersionStatus
The status of an annotation store version.
sourcepub fn version_arn(&self) -> &str
pub fn version_arn(&self) -> &str
The Arn for the annotation store.
sourcepub fn version_name(&self) -> &str
pub fn version_name(&self) -> &str
The name given to an annotation store version to distinguish it from others.
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
The description for an annotation store version.
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
The time stamp for when an annotation store version was created.
sourcepub fn update_time(&self) -> &DateTime
pub fn update_time(&self) -> &DateTime
The time stamp for when an annotation store version was updated.
Any tags associated with an annotation store version.
sourcepub fn version_options(&self) -> Option<&VersionOptions>
pub fn version_options(&self) -> Option<&VersionOptions>
The options for an annotation store version.
sourcepub fn status_message(&self) -> &str
pub fn status_message(&self) -> &str
The status of an annotation store version.
sourcepub fn version_size_bytes(&self) -> i64
pub fn version_size_bytes(&self) -> i64
The size of the annotation store version in Bytes.
source§impl GetAnnotationStoreVersionOutput
impl GetAnnotationStoreVersionOutput
sourcepub fn builder() -> GetAnnotationStoreVersionOutputBuilder
pub fn builder() -> GetAnnotationStoreVersionOutputBuilder
Creates a new builder-style object to manufacture GetAnnotationStoreVersionOutput
.
Trait Implementations§
source§impl Clone for GetAnnotationStoreVersionOutput
impl Clone for GetAnnotationStoreVersionOutput
source§fn clone(&self) -> GetAnnotationStoreVersionOutput
fn clone(&self) -> GetAnnotationStoreVersionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetAnnotationStoreVersionOutput
impl PartialEq for GetAnnotationStoreVersionOutput
source§fn eq(&self, other: &GetAnnotationStoreVersionOutput) -> bool
fn eq(&self, other: &GetAnnotationStoreVersionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetAnnotationStoreVersionOutput
impl RequestId for GetAnnotationStoreVersionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetAnnotationStoreVersionOutput
Auto Trait Implementations§
impl Freeze for GetAnnotationStoreVersionOutput
impl RefUnwindSafe for GetAnnotationStoreVersionOutput
impl Send for GetAnnotationStoreVersionOutput
impl Sync for GetAnnotationStoreVersionOutput
impl Unpin for GetAnnotationStoreVersionOutput
impl UnwindSafe for GetAnnotationStoreVersionOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more