Struct aws_sdk_omics::operation::delete_annotation_store_versions::builders::DeleteAnnotationStoreVersionsFluentBuilder
source · pub struct DeleteAnnotationStoreVersionsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteAnnotationStoreVersions
.
Deletes one or multiple versions of an annotation store.
Implementations§
source§impl DeleteAnnotationStoreVersionsFluentBuilder
impl DeleteAnnotationStoreVersionsFluentBuilder
sourcepub fn as_input(&self) -> &DeleteAnnotationStoreVersionsInputBuilder
pub fn as_input(&self) -> &DeleteAnnotationStoreVersionsInputBuilder
Access the DeleteAnnotationStoreVersions as a reference.
sourcepub async fn send(
self
) -> Result<DeleteAnnotationStoreVersionsOutput, SdkError<DeleteAnnotationStoreVersionsError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteAnnotationStoreVersionsOutput, SdkError<DeleteAnnotationStoreVersionsError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<DeleteAnnotationStoreVersionsOutput, DeleteAnnotationStoreVersionsError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteAnnotationStoreVersionsOutput, DeleteAnnotationStoreVersionsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
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..
Trait Implementations§
source§impl Clone for DeleteAnnotationStoreVersionsFluentBuilder
impl Clone for DeleteAnnotationStoreVersionsFluentBuilder
source§fn clone(&self) -> DeleteAnnotationStoreVersionsFluentBuilder
fn clone(&self) -> DeleteAnnotationStoreVersionsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more