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.
example
Use a bare-bones client and the command you need to make an API call.
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.
Use a bare-bones client and the command you need to make an API call.
import { ApplicationDiscoveryServiceClient, BatchDeleteImportDataCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import // const { ApplicationDiscoveryServiceClient, BatchDeleteImportDataCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import const client = new ApplicationDiscoveryServiceClient(config); const command = new BatchDeleteImportDataCommand(input); const response = await client.send(command);
BatchDeleteImportDataCommandInput for command's
input
shape.BatchDeleteImportDataCommandOutput for command's
response
shape.config for ApplicationDiscoveryServiceClient's
config
shape.