aws-sdk 2.1605.0 → 2.1606.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -19,6 +19,14 @@ declare class EntityResolution extends Service {
19
19
  * Adds a policy statement object. To retrieve a list of existing policy statements, use the GetPolicy API.
20
20
  */
21
21
  addPolicyStatement(callback?: (err: AWSError, data: EntityResolution.Types.AddPolicyStatementOutput) => void): Request<EntityResolution.Types.AddPolicyStatementOutput, AWSError>;
22
+ /**
23
+ * Deletes multiple unique IDs in a matching workflow.
24
+ */
25
+ batchDeleteUniqueId(params: EntityResolution.Types.BatchDeleteUniqueIdInput, callback?: (err: AWSError, data: EntityResolution.Types.BatchDeleteUniqueIdOutput) => void): Request<EntityResolution.Types.BatchDeleteUniqueIdOutput, AWSError>;
26
+ /**
27
+ * Deletes multiple unique IDs in a matching workflow.
28
+ */
29
+ batchDeleteUniqueId(callback?: (err: AWSError, data: EntityResolution.Types.BatchDeleteUniqueIdOutput) => void): Request<EntityResolution.Types.BatchDeleteUniqueIdOutput, AWSError>;
22
30
  /**
23
31
  * Creates an IdMappingWorkflow object which stores the configuration of the data processing job to be run. Each IdMappingWorkflow must have a unique workflow name. To modify an existing workflow, use the UpdateIdMappingWorkflow API.
24
32
  */
@@ -345,6 +353,39 @@ declare namespace EntityResolution {
345
353
  export type AttributeName = string;
346
354
  export type AwsAccountId = string;
347
355
  export type AwsAccountIdList = AwsAccountId[];
356
+ export interface BatchDeleteUniqueIdInput {
357
+ /**
358
+ * The input source for the batch delete unique ID operation.
359
+ */
360
+ inputSource?: BatchDeleteUniqueIdInputInputSourceString;
361
+ /**
362
+ * The unique IDs to delete.
363
+ */
364
+ uniqueIds: UniqueIdList;
365
+ /**
366
+ * The name of the workflow.
367
+ */
368
+ workflowName: EntityName;
369
+ }
370
+ export type BatchDeleteUniqueIdInputInputSourceString = string;
371
+ export interface BatchDeleteUniqueIdOutput {
372
+ /**
373
+ * The unique IDs that were deleted.
374
+ */
375
+ deleted: DeletedUniqueIdList;
376
+ /**
377
+ * The unique IDs that were disconnected.
378
+ */
379
+ disconnectedUniqueIds: DisconnectedUniqueIdsList;
380
+ /**
381
+ * The errors from deleting multiple unique IDs.
382
+ */
383
+ errors: DeleteUniqueIdErrorsList;
384
+ /**
385
+ * The status of the batch delete unique ID operation.
386
+ */
387
+ status: DeleteUniqueIdStatus;
388
+ }
348
389
  export type Boolean = boolean;
349
390
  export interface CreateIdMappingWorkflowInput {
350
391
  /**
@@ -654,7 +695,28 @@ declare namespace EntityResolution {
654
695
  */
655
696
  message: String;
656
697
  }
698
+ export interface DeleteUniqueIdError {
699
+ /**
700
+ * The error type for the batch delete unique ID operation.
701
+ */
702
+ errorType: DeleteUniqueIdErrorType;
703
+ /**
704
+ * The unique ID that could not be deleted.
705
+ */
706
+ uniqueId: UniqueId;
707
+ }
708
+ export type DeleteUniqueIdErrorType = "SERVICE_ERROR"|"VALIDATION_ERROR"|string;
709
+ export type DeleteUniqueIdErrorsList = DeleteUniqueIdError[];
710
+ export type DeleteUniqueIdStatus = "COMPLETED"|"ACCEPTED"|string;
711
+ export interface DeletedUniqueId {
712
+ /**
713
+ * The unique ID of the deleted item.
714
+ */
715
+ uniqueId: UniqueId;
716
+ }
717
+ export type DeletedUniqueIdList = DeletedUniqueId[];
657
718
  export type Description = string;
719
+ export type DisconnectedUniqueIdsList = UniqueId[];
658
720
  export interface Document {
659
721
  }
660
722
  export type EntityName = string;
@@ -1798,6 +1860,8 @@ declare namespace EntityResolution {
1798
1860
  }
1799
1861
  export type TagValue = string;
1800
1862
  export type Timestamp = Date;
1863
+ export type UniqueId = string;
1864
+ export type UniqueIdList = UniqueId[];
1801
1865
  export interface UntagResourceInput {
1802
1866
  /**
1803
1867
  * The ARN of the resource for which you want to untag.