Struct aws_sdk_omics::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionOutputBuilder
source · #[non_exhaustive]pub struct UpdateAnnotationStoreVersionOutputBuilder { /* private fields */ }
Expand description
A builder for UpdateAnnotationStoreVersionOutput
.
Implementations§
source§impl UpdateAnnotationStoreVersionOutputBuilder
impl UpdateAnnotationStoreVersionOutputBuilder
sourcepub fn store_id(self, input: impl Into<String>) -> Self
pub fn store_id(self, input: impl Into<String>) -> Self
The annotation store ID.
This field is required.sourcepub fn set_store_id(self, input: Option<String>) -> Self
pub fn set_store_id(self, input: Option<String>) -> Self
The annotation store ID.
sourcepub fn get_store_id(&self) -> &Option<String>
pub fn get_store_id(&self) -> &Option<String>
The annotation store ID.
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The annotation store version ID.
This field is required.sourcepub fn status(self, input: VersionStatus) -> Self
pub fn status(self, input: VersionStatus) -> Self
The status of an annotation store version.
This field is required.sourcepub fn set_status(self, input: Option<VersionStatus>) -> Self
pub fn set_status(self, input: Option<VersionStatus>) -> Self
The status of an annotation store version.
sourcepub fn get_status(&self) -> &Option<VersionStatus>
pub fn get_status(&self) -> &Option<VersionStatus>
The status of an annotation store version.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of an annotation store.
This field is required.sourcepub fn version_name(self, input: impl Into<String>) -> Self
pub fn version_name(self, input: impl Into<String>) -> Self
The name of an annotation store version.
This field is required.sourcepub fn set_version_name(self, input: Option<String>) -> Self
pub fn set_version_name(self, input: Option<String>) -> Self
The name of an annotation store version.
sourcepub fn get_version_name(&self) -> &Option<String>
pub fn get_version_name(&self) -> &Option<String>
The name of an annotation store version.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of an annotation store version.
This field is required.sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of an annotation store version.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of an annotation store version.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The time stamp for when an annotation store version was created.
This field is required.sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The time stamp for when an annotation store version was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The time stamp for when an annotation store version was created.
sourcepub fn update_time(self, input: DateTime) -> Self
pub fn update_time(self, input: DateTime) -> Self
The time stamp for when an annotation store version was updated.
This field is required.sourcepub fn set_update_time(self, input: Option<DateTime>) -> Self
pub fn set_update_time(self, input: Option<DateTime>) -> Self
The time stamp for when an annotation store version was updated.
sourcepub fn get_update_time(&self) -> &Option<DateTime>
pub fn get_update_time(&self) -> &Option<DateTime>
The time stamp for when an annotation store version was updated.
sourcepub fn build(self) -> Result<UpdateAnnotationStoreVersionOutput, BuildError>
pub fn build(self) -> Result<UpdateAnnotationStoreVersionOutput, BuildError>
Consumes the builder and constructs a UpdateAnnotationStoreVersionOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for UpdateAnnotationStoreVersionOutputBuilder
impl Clone for UpdateAnnotationStoreVersionOutputBuilder
source§fn clone(&self) -> UpdateAnnotationStoreVersionOutputBuilder
fn clone(&self) -> UpdateAnnotationStoreVersionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateAnnotationStoreVersionOutputBuilder
impl Default for UpdateAnnotationStoreVersionOutputBuilder
source§fn default() -> UpdateAnnotationStoreVersionOutputBuilder
fn default() -> UpdateAnnotationStoreVersionOutputBuilder
source§impl PartialEq for UpdateAnnotationStoreVersionOutputBuilder
impl PartialEq for UpdateAnnotationStoreVersionOutputBuilder
source§fn eq(&self, other: &UpdateAnnotationStoreVersionOutputBuilder) -> bool
fn eq(&self, other: &UpdateAnnotationStoreVersionOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateAnnotationStoreVersionOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateAnnotationStoreVersionOutputBuilder
impl RefUnwindSafe for UpdateAnnotationStoreVersionOutputBuilder
impl Send for UpdateAnnotationStoreVersionOutputBuilder
impl Sync for UpdateAnnotationStoreVersionOutputBuilder
impl Unpin for UpdateAnnotationStoreVersionOutputBuilder
impl UnwindSafe for UpdateAnnotationStoreVersionOutputBuilder
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