pub struct BatchDeleteImportData { /* private fields */ }Expand description
Fluent builder constructing a request to BatchDeleteImportData.
Deletes one or more import tasks, each identified by their import ID. Each import task has a number of records that can identify servers or applications.
Amazon Web Services Application Discovery Service has built-in matching logic that will identify when discovered servers match existing entries that you've previously discovered, the information for the already-existing discovered server is updated. When you delete an import task that contains records that were used to match, the information in those matched records that comes from the deleted records will also be deleted.
Implementations
sourceimpl BatchDeleteImportData
impl BatchDeleteImportData
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<BatchDeleteImportData, AwsResponseRetryClassifier>, SdkError<BatchDeleteImportDataError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<BatchDeleteImportData, AwsResponseRetryClassifier>, SdkError<BatchDeleteImportDataError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<BatchDeleteImportDataOutput, SdkError<BatchDeleteImportDataError>>
pub async fn send(
self
) -> Result<BatchDeleteImportDataOutput, SdkError<BatchDeleteImportDataError>>
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 import_task_ids(self, input: impl Into<String>) -> Self
pub fn import_task_ids(self, input: impl Into<String>) -> Self
Appends an item to importTaskIds.
To override the contents of this collection use set_import_task_ids.
The IDs for the import tasks that you want to delete.
sourcepub fn set_import_task_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_import_task_ids(self, input: Option<Vec<String>>) -> Self
The IDs for the import tasks that you want to delete.
Trait Implementations
sourceimpl Clone for BatchDeleteImportData
impl Clone for BatchDeleteImportData
sourcefn clone(&self) -> BatchDeleteImportData
fn clone(&self) -> BatchDeleteImportData
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more