cdk-lambda-subminute 2.0.438 → 2.0.439

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +46 -35
  5. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -0
  6. package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +182 -19
  7. package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.paginators.json +6 -0
  8. package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.min.json +165 -93
  9. package/node_modules/aws-sdk/apis/gamelift-2015-10-01.min.json +586 -188
  10. package/node_modules/aws-sdk/apis/gamelift-2015-10-01.paginators.json +6 -0
  11. package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +235 -129
  12. package/node_modules/aws-sdk/apis/ssm-2014-11-06.paginators.json +6 -0
  13. package/node_modules/aws-sdk/clients/datasync.d.ts +67 -42
  14. package/node_modules/aws-sdk/clients/ec2.d.ts +9 -1
  15. package/node_modules/aws-sdk/clients/emrcontainers.d.ts +205 -0
  16. package/node_modules/aws-sdk/clients/entityresolution.d.ts +64 -0
  17. package/node_modules/aws-sdk/clients/gamelift.d.ts +592 -88
  18. package/node_modules/aws-sdk/clients/ssm.d.ts +186 -6
  19. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  20. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
  21. package/node_modules/aws-sdk/dist/aws-sdk.js +843 -320
  22. package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
  23. package/node_modules/aws-sdk/lib/core.js +1 -1
  24. package/node_modules/aws-sdk/package.json +1 -1
  25. package/package.json +2 -2
@@ -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.