Struct aws_sdk_omics::operation::delete_annotation_store_versions::builders::DeleteAnnotationStoreVersionsInputBuilder
source · #[non_exhaustive]pub struct DeleteAnnotationStoreVersionsInputBuilder { /* private fields */ }Expand description
A builder for DeleteAnnotationStoreVersionsInput.
Implementations§
source§impl DeleteAnnotationStoreVersionsInputBuilder
impl DeleteAnnotationStoreVersionsInputBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the annotation store from which versions are being deleted.
This field is required.sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the annotation store from which versions are being deleted.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
The name of the annotation store from which versions are being deleted.
sourcepub fn versions(self, input: impl Into<String>) -> Self
pub fn versions(self, input: impl Into<String>) -> Self
Appends an item to versions.
To override the contents of this collection use set_versions.
The versions of an annotation store to be deleted.
sourcepub fn set_versions(self, input: Option<Vec<String>>) -> Self
pub fn set_versions(self, input: Option<Vec<String>>) -> Self
The versions of an annotation store to be deleted.
sourcepub fn get_versions(&self) -> &Option<Vec<String>>
pub fn get_versions(&self) -> &Option<Vec<String>>
The versions of an annotation store to be deleted.
sourcepub fn force(self, input: bool) -> Self
pub fn force(self, input: bool) -> Self
Forces the deletion of an annotation store version when imports are in-progress..
sourcepub fn set_force(self, input: Option<bool>) -> Self
pub fn set_force(self, input: Option<bool>) -> Self
Forces the deletion of an annotation store version when imports are in-progress..
sourcepub fn get_force(&self) -> &Option<bool>
pub fn get_force(&self) -> &Option<bool>
Forces the deletion of an annotation store version when imports are in-progress..
sourcepub fn build(self) -> Result<DeleteAnnotationStoreVersionsInput, BuildError>
pub fn build(self) -> Result<DeleteAnnotationStoreVersionsInput, BuildError>
Consumes the builder and constructs a DeleteAnnotationStoreVersionsInput.
source§impl DeleteAnnotationStoreVersionsInputBuilder
impl DeleteAnnotationStoreVersionsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DeleteAnnotationStoreVersionsOutput, SdkError<DeleteAnnotationStoreVersionsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DeleteAnnotationStoreVersionsOutput, SdkError<DeleteAnnotationStoreVersionsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteAnnotationStoreVersionsInputBuilder
impl Clone for DeleteAnnotationStoreVersionsInputBuilder
source§fn clone(&self) -> DeleteAnnotationStoreVersionsInputBuilder
fn clone(&self) -> DeleteAnnotationStoreVersionsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DeleteAnnotationStoreVersionsInputBuilder
impl Default for DeleteAnnotationStoreVersionsInputBuilder
source§fn default() -> DeleteAnnotationStoreVersionsInputBuilder
fn default() -> DeleteAnnotationStoreVersionsInputBuilder
source§impl PartialEq for DeleteAnnotationStoreVersionsInputBuilder
impl PartialEq for DeleteAnnotationStoreVersionsInputBuilder
source§fn eq(&self, other: &DeleteAnnotationStoreVersionsInputBuilder) -> bool
fn eq(&self, other: &DeleteAnnotationStoreVersionsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteAnnotationStoreVersionsInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteAnnotationStoreVersionsInputBuilder
impl RefUnwindSafe for DeleteAnnotationStoreVersionsInputBuilder
impl Send for DeleteAnnotationStoreVersionsInputBuilder
impl Sync for DeleteAnnotationStoreVersionsInputBuilder
impl Unpin for DeleteAnnotationStoreVersionsInputBuilder
impl UnwindSafe for DeleteAnnotationStoreVersionsInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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