cdk-comprehend-s3olap 2.0.120 → 2.0.122

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 (79) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/@esbuild/linux-x64/bin/esbuild +0 -0
  6. package/node_modules/@esbuild/linux-x64/package.json +1 -1
  7. package/node_modules/aws-sdk/CHANGELOG.md +9 -1
  8. package/node_modules/aws-sdk/README.md +1 -1
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +196 -187
  10. package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +82 -15
  11. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +56 -32
  12. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +224 -138
  13. package/node_modules/aws-sdk/clients/connect.d.ts +15 -4
  14. package/node_modules/aws-sdk/clients/ecs.d.ts +24 -24
  15. package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +67 -7
  16. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +20 -1
  17. package/node_modules/aws-sdk/clients/omics.d.ts +2 -2
  18. package/node_modules/aws-sdk/clients/rekognition.d.ts +114 -16
  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 +2532 -875
  21. package/node_modules/aws-sdk/dist/aws-sdk.js +505 -343
  22. package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
  23. package/node_modules/aws-sdk/dist/xml2js.js +2579 -922
  24. package/node_modules/aws-sdk/lib/core.js +1 -1
  25. package/node_modules/aws-sdk/package.json +2 -2
  26. package/node_modules/esbuild/bin/esbuild +1 -1
  27. package/node_modules/esbuild/lib/main.js +8 -8
  28. package/node_modules/esbuild/package.json +23 -23
  29. package/node_modules/xml2js/README.md +108 -7
  30. package/node_modules/xml2js/lib/parser.js +35 -7
  31. package/node_modules/xml2js/lib/xml2js.js +2 -0
  32. package/node_modules/xml2js/node_modules/xmlbuilder/CHANGELOG.md +47 -0
  33. package/node_modules/xml2js/node_modules/xmlbuilder/LICENSE +21 -21
  34. package/node_modules/xml2js/node_modules/xmlbuilder/README.md +86 -85
  35. package/node_modules/xml2js/node_modules/xmlbuilder/appveyor.yml +20 -0
  36. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Derivation.js +10 -0
  37. package/node_modules/xml2js/node_modules/xmlbuilder/lib/DocumentPosition.js +12 -0
  38. package/node_modules/xml2js/node_modules/xmlbuilder/lib/NodeType.js +23 -0
  39. package/node_modules/xml2js/node_modules/xmlbuilder/lib/OperationType.js +11 -0
  40. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Utility.js +11 -1
  41. package/node_modules/xml2js/node_modules/xmlbuilder/lib/WriterState.js +10 -0
  42. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLAttribute.js +86 -9
  43. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCData.js +10 -6
  44. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCharacterData.js +79 -0
  45. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLComment.js +10 -6
  46. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js +64 -0
  47. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js +16 -0
  48. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMImplementation.js +32 -0
  49. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMStringList.js +28 -0
  50. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDAttList.js +16 -11
  51. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDElement.js +7 -4
  52. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDEntity.js +49 -8
  53. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDNotation.js +20 -5
  54. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDeclaration.js +5 -2
  55. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocType.js +84 -5
  56. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocument.js +199 -5
  57. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentCB.js +165 -39
  58. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentFragment.js +24 -0
  59. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDummy.js +31 -0
  60. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLElement.js +207 -20
  61. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js +58 -0
  62. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNode.js +403 -50
  63. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeFilter.js +48 -0
  64. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeList.js +28 -0
  65. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js +19 -5
  66. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLRaw.js +6 -3
  67. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStreamWriter.js +94 -197
  68. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringWriter.js +6 -305
  69. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringifier.js +109 -32
  70. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLText.js +43 -6
  71. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLTypeInfo.js +21 -0
  72. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLUserDataHandler.js +16 -0
  73. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLWriterBase.js +397 -59
  74. package/node_modules/xml2js/node_modules/xmlbuilder/lib/index.js +15 -3
  75. package/node_modules/xml2js/node_modules/xmlbuilder/package.json +5 -3
  76. package/node_modules/xml2js/node_modules/xmlbuilder/typings/index.d.ts +153 -0
  77. package/node_modules/xml2js/package.json +11 -5
  78. package/package.json +5 -5
  79. package/node_modules/xml2js/node_modules/xmlbuilder/.npmignore +0 -5
@@ -1,4 +1,4 @@
1
- // AWS SDK for JavaScript v2.1353.0
1
+ // AWS SDK for JavaScript v2.1354.0
2
2
  // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  // License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
4
4
  (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
@@ -63636,11 +63636,11 @@ module.exports={
63636
63636
  },
63637
63637
  "Name": {},
63638
63638
  "TriggerEventSource": {
63639
- "shape": "S3m"
63639
+ "shape": "S3o"
63640
63640
  },
63641
63641
  "Function": {},
63642
63642
  "Actions": {
63643
- "shape": "S3p"
63643
+ "shape": "S3r"
63644
63644
  },
63645
63645
  "PublishStatus": {},
63646
63646
  "ClientToken": {
@@ -63675,7 +63675,7 @@ module.exports={
63675
63675
  "SecurityProfileName": {},
63676
63676
  "Description": {},
63677
63677
  "Permissions": {
63678
- "shape": "S4i"
63678
+ "shape": "S4k"
63679
63679
  },
63680
63680
  "InstanceId": {
63681
63681
  "location": "uri",
@@ -63685,10 +63685,10 @@ module.exports={
63685
63685
  "shape": "S1j"
63686
63686
  },
63687
63687
  "AllowedAccessControlTags": {
63688
- "shape": "S4k"
63688
+ "shape": "S4m"
63689
63689
  },
63690
63690
  "TagRestrictedResources": {
63691
- "shape": "S4n"
63691
+ "shape": "S4p"
63692
63692
  }
63693
63693
  }
63694
63694
  },
@@ -63721,14 +63721,14 @@ module.exports={
63721
63721
  "Description": {},
63722
63722
  "ContactFlowId": {},
63723
63723
  "Constraints": {
63724
- "shape": "S4u"
63724
+ "shape": "S4w"
63725
63725
  },
63726
63726
  "Defaults": {
63727
- "shape": "S53"
63727
+ "shape": "S55"
63728
63728
  },
63729
63729
  "Status": {},
63730
63730
  "Fields": {
63731
- "shape": "S58"
63731
+ "shape": "S5a"
63732
63732
  },
63733
63733
  "ClientToken": {
63734
63734
  "idempotencyToken": true
@@ -63831,14 +63831,14 @@ module.exports={
63831
63831
  "Username": {},
63832
63832
  "Password": {},
63833
63833
  "IdentityInfo": {
63834
- "shape": "S5v"
63834
+ "shape": "S5x"
63835
63835
  },
63836
63836
  "PhoneConfig": {
63837
- "shape": "S5z"
63837
+ "shape": "S61"
63838
63838
  },
63839
63839
  "DirectoryUserId": {},
63840
63840
  "SecurityProfileIds": {
63841
- "shape": "S64"
63841
+ "shape": "S66"
63842
63842
  },
63843
63843
  "RoutingProfileId": {},
63844
63844
  "HierarchyGroupId": {},
@@ -64607,7 +64607,7 @@ module.exports={
64607
64607
  "type": "structure",
64608
64608
  "members": {
64609
64609
  "Attribute": {
64610
- "shape": "S80"
64610
+ "shape": "S82"
64611
64611
  }
64612
64612
  }
64613
64613
  }
@@ -64719,7 +64719,7 @@ module.exports={
64719
64719
  "type": "structure",
64720
64720
  "members": {
64721
64721
  "Queue": {
64722
- "shape": "S8e"
64722
+ "shape": "S8g"
64723
64723
  }
64724
64724
  }
64725
64725
  }
@@ -64793,7 +64793,7 @@ module.exports={
64793
64793
  "type": "structure",
64794
64794
  "members": {
64795
64795
  "RoutingProfile": {
64796
- "shape": "S8l"
64796
+ "shape": "S8n"
64797
64797
  }
64798
64798
  }
64799
64799
  }
@@ -64845,11 +64845,11 @@ module.exports={
64845
64845
  "RuleId": {},
64846
64846
  "RuleArn": {},
64847
64847
  "TriggerEventSource": {
64848
- "shape": "S3m"
64848
+ "shape": "S3o"
64849
64849
  },
64850
64850
  "Function": {},
64851
64851
  "Actions": {
64852
- "shape": "S3p"
64852
+ "shape": "S3r"
64853
64853
  },
64854
64854
  "PublishStatus": {},
64855
64855
  "CreatedTime": {
@@ -64904,10 +64904,10 @@ module.exports={
64904
64904
  "shape": "S1j"
64905
64905
  },
64906
64906
  "AllowedAccessControlTags": {
64907
- "shape": "S4k"
64907
+ "shape": "S4m"
64908
64908
  },
64909
64909
  "TagRestrictedResources": {
64910
- "shape": "S4n"
64910
+ "shape": "S4p"
64911
64911
  }
64912
64912
  }
64913
64913
  }
@@ -64983,14 +64983,14 @@ module.exports={
64983
64983
  "Arn": {},
64984
64984
  "Username": {},
64985
64985
  "IdentityInfo": {
64986
- "shape": "S5v"
64986
+ "shape": "S5x"
64987
64987
  },
64988
64988
  "PhoneConfig": {
64989
- "shape": "S5z"
64989
+ "shape": "S61"
64990
64990
  },
64991
64991
  "DirectoryUserId": {},
64992
64992
  "SecurityProfileIds": {
64993
- "shape": "S64"
64993
+ "shape": "S66"
64994
64994
  },
64995
64995
  "RoutingProfileId": {},
64996
64996
  "HierarchyGroupId": {},
@@ -65038,19 +65038,19 @@ module.exports={
65038
65038
  "type": "structure",
65039
65039
  "members": {
65040
65040
  "LevelOne": {
65041
- "shape": "S97"
65041
+ "shape": "S99"
65042
65042
  },
65043
65043
  "LevelTwo": {
65044
- "shape": "S97"
65044
+ "shape": "S99"
65045
65045
  },
65046
65046
  "LevelThree": {
65047
- "shape": "S97"
65047
+ "shape": "S99"
65048
65048
  },
65049
65049
  "LevelFour": {
65050
- "shape": "S97"
65050
+ "shape": "S99"
65051
65051
  },
65052
65052
  "LevelFive": {
65053
- "shape": "S97"
65053
+ "shape": "S99"
65054
65054
  }
65055
65055
  }
65056
65056
  },
@@ -65086,19 +65086,19 @@ module.exports={
65086
65086
  "type": "structure",
65087
65087
  "members": {
65088
65088
  "LevelOne": {
65089
- "shape": "S9b"
65089
+ "shape": "S9d"
65090
65090
  },
65091
65091
  "LevelTwo": {
65092
- "shape": "S9b"
65092
+ "shape": "S9d"
65093
65093
  },
65094
65094
  "LevelThree": {
65095
- "shape": "S9b"
65095
+ "shape": "S9d"
65096
65096
  },
65097
65097
  "LevelFour": {
65098
- "shape": "S9b"
65098
+ "shape": "S9d"
65099
65099
  },
65100
65100
  "LevelFive": {
65101
- "shape": "S9b"
65101
+ "shape": "S9d"
65102
65102
  }
65103
65103
  }
65104
65104
  }
@@ -65442,7 +65442,7 @@ module.exports={
65442
65442
  "type": "structure",
65443
65443
  "members": {
65444
65444
  "Attributes": {
65445
- "shape": "S9w"
65445
+ "shape": "S9y"
65446
65446
  }
65447
65447
  }
65448
65448
  }
@@ -65464,15 +65464,15 @@ module.exports={
65464
65464
  "locationName": "InstanceId"
65465
65465
  },
65466
65466
  "Filters": {
65467
- "shape": "Sa0"
65467
+ "shape": "Sa2"
65468
65468
  },
65469
65469
  "Groupings": {
65470
- "shape": "Sa4"
65470
+ "shape": "Sa6"
65471
65471
  },
65472
65472
  "CurrentMetrics": {
65473
65473
  "type": "list",
65474
65474
  "member": {
65475
- "shape": "Sa7"
65475
+ "shape": "Sa9"
65476
65476
  }
65477
65477
  },
65478
65478
  "NextToken": {},
@@ -65501,7 +65501,7 @@ module.exports={
65501
65501
  "type": "structure",
65502
65502
  "members": {
65503
65503
  "Dimensions": {
65504
- "shape": "Sai"
65504
+ "shape": "Sak"
65505
65505
  },
65506
65506
  "Collections": {
65507
65507
  "type": "list",
@@ -65509,7 +65509,7 @@ module.exports={
65509
65509
  "type": "structure",
65510
65510
  "members": {
65511
65511
  "Metric": {
65512
- "shape": "Sa7"
65512
+ "shape": "Sa9"
65513
65513
  },
65514
65514
  "Value": {
65515
65515
  "type": "double"
@@ -65548,7 +65548,7 @@ module.exports={
65548
65548
  "type": "structure",
65549
65549
  "members": {
65550
65550
  "Queues": {
65551
- "shape": "Sa1"
65551
+ "shape": "Sa3"
65552
65552
  },
65553
65553
  "ContactFilter": {
65554
65554
  "type": "structure",
@@ -65560,7 +65560,7 @@ module.exports={
65560
65560
  }
65561
65561
  },
65562
65562
  "RoutingProfiles": {
65563
- "shape": "Sa3"
65563
+ "shape": "Sa5"
65564
65564
  },
65565
65565
  "Agents": {
65566
65566
  "type": "list",
@@ -65595,25 +65595,25 @@ module.exports={
65595
65595
  }
65596
65596
  },
65597
65597
  "RoutingProfile": {
65598
- "shape": "Sak"
65598
+ "shape": "Sam"
65599
65599
  },
65600
65600
  "HierarchyPath": {
65601
65601
  "type": "structure",
65602
65602
  "members": {
65603
65603
  "LevelOne": {
65604
- "shape": "Sb1"
65604
+ "shape": "Sb3"
65605
65605
  },
65606
65606
  "LevelTwo": {
65607
- "shape": "Sb1"
65607
+ "shape": "Sb3"
65608
65608
  },
65609
65609
  "LevelThree": {
65610
- "shape": "Sb1"
65610
+ "shape": "Sb3"
65611
65611
  },
65612
65612
  "LevelFour": {
65613
- "shape": "Sb1"
65613
+ "shape": "Sb3"
65614
65614
  },
65615
65615
  "LevelFive": {
65616
- "shape": "Sb1"
65616
+ "shape": "Sb3"
65617
65617
  }
65618
65618
  }
65619
65619
  },
@@ -65628,13 +65628,13 @@ module.exports={
65628
65628
  }
65629
65629
  },
65630
65630
  "AvailableSlotsByChannel": {
65631
- "shape": "Sb3"
65631
+ "shape": "Sb5"
65632
65632
  },
65633
65633
  "MaxSlotsByChannel": {
65634
- "shape": "Sb3"
65634
+ "shape": "Sb5"
65635
65635
  },
65636
65636
  "ActiveSlotsByChannel": {
65637
- "shape": "Sb3"
65637
+ "shape": "Sb5"
65638
65638
  },
65639
65639
  "Contacts": {
65640
65640
  "type": "list",
@@ -65652,7 +65652,7 @@ module.exports={
65652
65652
  "type": "timestamp"
65653
65653
  },
65654
65654
  "Queue": {
65655
- "shape": "Saj"
65655
+ "shape": "Sal"
65656
65656
  }
65657
65657
  }
65658
65658
  }
@@ -65691,13 +65691,13 @@ module.exports={
65691
65691
  "type": "structure",
65692
65692
  "members": {
65693
65693
  "AccessToken": {
65694
- "shape": "Sba"
65694
+ "shape": "Sbc"
65695
65695
  },
65696
65696
  "AccessTokenExpiration": {
65697
65697
  "type": "timestamp"
65698
65698
  },
65699
65699
  "RefreshToken": {
65700
- "shape": "Sba"
65700
+ "shape": "Sbc"
65701
65701
  },
65702
65702
  "RefreshTokenExpiration": {
65703
65703
  "type": "timestamp"
@@ -65735,15 +65735,15 @@ module.exports={
65735
65735
  "type": "timestamp"
65736
65736
  },
65737
65737
  "Filters": {
65738
- "shape": "Sa0"
65738
+ "shape": "Sa2"
65739
65739
  },
65740
65740
  "Groupings": {
65741
- "shape": "Sa4"
65741
+ "shape": "Sa6"
65742
65742
  },
65743
65743
  "HistoricalMetrics": {
65744
65744
  "type": "list",
65745
65745
  "member": {
65746
- "shape": "Sbe"
65746
+ "shape": "Sbg"
65747
65747
  }
65748
65748
  },
65749
65749
  "NextToken": {},
@@ -65762,7 +65762,7 @@ module.exports={
65762
65762
  "type": "structure",
65763
65763
  "members": {
65764
65764
  "Dimensions": {
65765
- "shape": "Sai"
65765
+ "shape": "Sak"
65766
65766
  },
65767
65767
  "Collections": {
65768
65768
  "type": "list",
@@ -65770,7 +65770,7 @@ module.exports={
65770
65770
  "type": "structure",
65771
65771
  "members": {
65772
65772
  "Metric": {
65773
- "shape": "Sbe"
65773
+ "shape": "Sbg"
65774
65774
  },
65775
65775
  "Value": {
65776
65776
  "type": "double"
@@ -65825,7 +65825,7 @@ module.exports={
65825
65825
  "Metrics": {
65826
65826
  "type": "list",
65827
65827
  "member": {
65828
- "shape": "Sbx"
65828
+ "shape": "Sbz"
65829
65829
  }
65830
65830
  },
65831
65831
  "NextToken": {},
@@ -65854,7 +65854,7 @@ module.exports={
65854
65854
  "type": "structure",
65855
65855
  "members": {
65856
65856
  "Metric": {
65857
- "shape": "Sbx"
65857
+ "shape": "Sbz"
65858
65858
  },
65859
65859
  "Value": {
65860
65860
  "type": "double"
@@ -65909,13 +65909,13 @@ module.exports={
65909
65909
  "Description": {},
65910
65910
  "ContactFlowId": {},
65911
65911
  "Constraints": {
65912
- "shape": "S4u"
65912
+ "shape": "S4w"
65913
65913
  },
65914
65914
  "Defaults": {
65915
- "shape": "S53"
65915
+ "shape": "S55"
65916
65916
  },
65917
65917
  "Fields": {
65918
- "shape": "S58"
65918
+ "shape": "S5a"
65919
65919
  },
65920
65920
  "Status": {},
65921
65921
  "LastModifiedTime": {
@@ -65951,7 +65951,7 @@ module.exports={
65951
65951
  "type": "structure",
65952
65952
  "members": {
65953
65953
  "TelephonyConfig": {
65954
- "shape": "Sci"
65954
+ "shape": "Sck"
65955
65955
  },
65956
65956
  "Id": {},
65957
65957
  "Arn": {}
@@ -66416,7 +66416,7 @@ module.exports={
66416
66416
  "Attributes": {
66417
66417
  "type": "list",
66418
66418
  "member": {
66419
- "shape": "S80"
66419
+ "shape": "S82"
66420
66420
  }
66421
66421
  },
66422
66422
  "NextToken": {}
@@ -66663,12 +66663,12 @@ module.exports={
66663
66663
  "locationName": "InstanceId"
66664
66664
  },
66665
66665
  "PhoneNumberTypes": {
66666
- "shape": "Sek",
66666
+ "shape": "Sem",
66667
66667
  "location": "querystring",
66668
66668
  "locationName": "phoneNumberTypes"
66669
66669
  },
66670
66670
  "PhoneNumberCountryCodes": {
66671
- "shape": "Sel",
66671
+ "shape": "Sen",
66672
66672
  "location": "querystring",
66673
66673
  "locationName": "phoneNumberCountryCodes"
66674
66674
  },
@@ -66716,10 +66716,10 @@ module.exports={
66716
66716
  },
66717
66717
  "NextToken": {},
66718
66718
  "PhoneNumberCountryCodes": {
66719
- "shape": "Sel"
66719
+ "shape": "Sen"
66720
66720
  },
66721
66721
  "PhoneNumberTypes": {
66722
- "shape": "Sek"
66722
+ "shape": "Sem"
66723
66723
  },
66724
66724
  "PhoneNumberPrefix": {}
66725
66725
  }
@@ -66825,7 +66825,7 @@ module.exports={
66825
66825
  "members": {
66826
66826
  "NextToken": {},
66827
66827
  "QuickConnectSummaryList": {
66828
- "shape": "Sf3"
66828
+ "shape": "Sf5"
66829
66829
  }
66830
66830
  }
66831
66831
  }
@@ -66917,7 +66917,7 @@ module.exports={
66917
66917
  "type": "structure",
66918
66918
  "members": {
66919
66919
  "QuickConnectSummaryList": {
66920
- "shape": "Sf3"
66920
+ "shape": "Sf5"
66921
66921
  },
66922
66922
  "NextToken": {}
66923
66923
  }
@@ -67197,7 +67197,7 @@ module.exports={
67197
67197
  "type": "structure",
67198
67198
  "members": {
67199
67199
  "Permissions": {
67200
- "shape": "S4i"
67200
+ "shape": "S4k"
67201
67201
  },
67202
67202
  "NextToken": {}
67203
67203
  }
@@ -67457,7 +67457,7 @@ module.exports={
67457
67457
  "UserHierarchyGroupSummaryList": {
67458
67458
  "type": "list",
67459
67459
  "member": {
67460
- "shape": "S97"
67460
+ "shape": "S99"
67461
67461
  }
67462
67462
  },
67463
67463
  "NextToken": {}
@@ -67706,12 +67706,12 @@ module.exports={
67706
67706
  "type": "structure",
67707
67707
  "members": {
67708
67708
  "TagFilter": {
67709
- "shape": "Sh7"
67709
+ "shape": "Sh9"
67710
67710
  }
67711
67711
  }
67712
67712
  },
67713
67713
  "SearchCriteria": {
67714
- "shape": "Shb"
67714
+ "shape": "Shd"
67715
67715
  }
67716
67716
  }
67717
67717
  },
@@ -67721,7 +67721,7 @@ module.exports={
67721
67721
  "Queues": {
67722
67722
  "type": "list",
67723
67723
  "member": {
67724
- "shape": "S8e"
67724
+ "shape": "S8g"
67725
67725
  }
67726
67726
  },
67727
67727
  "NextToken": {},
@@ -67750,12 +67750,12 @@ module.exports={
67750
67750
  "type": "structure",
67751
67751
  "members": {
67752
67752
  "TagFilter": {
67753
- "shape": "Sh7"
67753
+ "shape": "Sh9"
67754
67754
  }
67755
67755
  }
67756
67756
  },
67757
67757
  "SearchCriteria": {
67758
- "shape": "Shk"
67758
+ "shape": "Shm"
67759
67759
  }
67760
67760
  }
67761
67761
  },
@@ -67765,7 +67765,7 @@ module.exports={
67765
67765
  "RoutingProfiles": {
67766
67766
  "type": "list",
67767
67767
  "member": {
67768
- "shape": "S8l"
67768
+ "shape": "S8n"
67769
67769
  }
67770
67770
  },
67771
67771
  "NextToken": {},
@@ -67791,13 +67791,13 @@ module.exports={
67791
67791
  "type": "integer"
67792
67792
  },
67793
67793
  "SearchCriteria": {
67794
- "shape": "Shp"
67794
+ "shape": "Shr"
67795
67795
  },
67796
67796
  "SearchFilter": {
67797
67797
  "type": "structure",
67798
67798
  "members": {
67799
67799
  "TagFilter": {
67800
- "shape": "Sh7"
67800
+ "shape": "Sh9"
67801
67801
  }
67802
67802
  }
67803
67803
  }
@@ -67845,12 +67845,12 @@ module.exports={
67845
67845
  "type": "structure",
67846
67846
  "members": {
67847
67847
  "TagFilter": {
67848
- "shape": "Sh7"
67848
+ "shape": "Sh9"
67849
67849
  }
67850
67850
  }
67851
67851
  },
67852
67852
  "SearchCriteria": {
67853
- "shape": "Shx"
67853
+ "shape": "Shz"
67854
67854
  }
67855
67855
  }
67856
67856
  },
@@ -67874,11 +67874,11 @@ module.exports={
67874
67874
  }
67875
67875
  },
67876
67876
  "PhoneConfig": {
67877
- "shape": "S5z"
67877
+ "shape": "S61"
67878
67878
  },
67879
67879
  "RoutingProfileId": {},
67880
67880
  "SecurityProfileIds": {
67881
- "shape": "S64"
67881
+ "shape": "S66"
67882
67882
  },
67883
67883
  "Tags": {
67884
67884
  "shape": "S1j"
@@ -67965,7 +67965,7 @@ module.exports={
67965
67965
  "InstanceId": {},
67966
67966
  "ContactFlowId": {},
67967
67967
  "Attributes": {
67968
- "shape": "S9w"
67968
+ "shape": "S9y"
67969
67969
  },
67970
67970
  "ParticipantDetails": {
67971
67971
  "type": "structure",
@@ -68107,7 +68107,7 @@ module.exports={
68107
68107
  "SourcePhoneNumber": {},
68108
68108
  "QueueId": {},
68109
68109
  "Attributes": {
68110
- "shape": "S9w"
68110
+ "shape": "S9y"
68111
68111
  },
68112
68112
  "AnswerMachineDetectionConfig": {
68113
68113
  "type": "structure",
@@ -68147,11 +68147,11 @@ module.exports={
68147
68147
  "PreviousContactId": {},
68148
68148
  "ContactFlowId": {},
68149
68149
  "Attributes": {
68150
- "shape": "S9w"
68150
+ "shape": "S9y"
68151
68151
  },
68152
68152
  "Name": {},
68153
68153
  "References": {
68154
- "shape": "S3v"
68154
+ "shape": "S3x"
68155
68155
  },
68156
68156
  "Description": {},
68157
68157
  "ClientToken": {
@@ -68387,7 +68387,7 @@ module.exports={
68387
68387
  "Name": {},
68388
68388
  "Description": {},
68389
68389
  "References": {
68390
- "shape": "S3v"
68390
+ "shape": "S3x"
68391
68391
  }
68392
68392
  }
68393
68393
  },
@@ -68411,7 +68411,7 @@ module.exports={
68411
68411
  "InitialContactId": {},
68412
68412
  "InstanceId": {},
68413
68413
  "Attributes": {
68414
- "shape": "S9w"
68414
+ "shape": "S9y"
68415
68415
  }
68416
68416
  }
68417
68417
  },
@@ -69066,7 +69066,7 @@ module.exports={
69066
69066
  "Name": {},
69067
69067
  "Function": {},
69068
69068
  "Actions": {
69069
- "shape": "S3p"
69069
+ "shape": "S3r"
69070
69070
  },
69071
69071
  "PublishStatus": {}
69072
69072
  }
@@ -69085,7 +69085,7 @@ module.exports={
69085
69085
  "members": {
69086
69086
  "Description": {},
69087
69087
  "Permissions": {
69088
- "shape": "S4i"
69088
+ "shape": "S4k"
69089
69089
  },
69090
69090
  "SecurityProfileId": {
69091
69091
  "location": "uri",
@@ -69096,10 +69096,10 @@ module.exports={
69096
69096
  "locationName": "InstanceId"
69097
69097
  },
69098
69098
  "AllowedAccessControlTags": {
69099
- "shape": "S4k"
69099
+ "shape": "S4m"
69100
69100
  },
69101
69101
  "TagRestrictedResources": {
69102
- "shape": "S4n"
69102
+ "shape": "S4p"
69103
69103
  }
69104
69104
  }
69105
69105
  }
@@ -69127,14 +69127,14 @@ module.exports={
69127
69127
  "Description": {},
69128
69128
  "ContactFlowId": {},
69129
69129
  "Constraints": {
69130
- "shape": "S4u"
69130
+ "shape": "S4w"
69131
69131
  },
69132
69132
  "Defaults": {
69133
- "shape": "S53"
69133
+ "shape": "S55"
69134
69134
  },
69135
69135
  "Status": {},
69136
69136
  "Fields": {
69137
- "shape": "S58"
69137
+ "shape": "S5a"
69138
69138
  }
69139
69139
  }
69140
69140
  },
@@ -69148,13 +69148,13 @@ module.exports={
69148
69148
  "Description": {},
69149
69149
  "ContactFlowId": {},
69150
69150
  "Constraints": {
69151
- "shape": "S4u"
69151
+ "shape": "S4w"
69152
69152
  },
69153
69153
  "Defaults": {
69154
- "shape": "S53"
69154
+ "shape": "S55"
69155
69155
  },
69156
69156
  "Fields": {
69157
- "shape": "S58"
69157
+ "shape": "S5a"
69158
69158
  },
69159
69159
  "Status": {},
69160
69160
  "LastModifiedTime": {
@@ -69182,7 +69182,7 @@ module.exports={
69182
69182
  "locationName": "Id"
69183
69183
  },
69184
69184
  "TelephonyConfig": {
69185
- "shape": "Sci"
69185
+ "shape": "Sck"
69186
69186
  }
69187
69187
  }
69188
69188
  },
@@ -69253,19 +69253,19 @@ module.exports={
69253
69253
  "type": "structure",
69254
69254
  "members": {
69255
69255
  "LevelOne": {
69256
- "shape": "Sl2"
69256
+ "shape": "Sl4"
69257
69257
  },
69258
69258
  "LevelTwo": {
69259
- "shape": "Sl2"
69259
+ "shape": "Sl4"
69260
69260
  },
69261
69261
  "LevelThree": {
69262
- "shape": "Sl2"
69262
+ "shape": "Sl4"
69263
69263
  },
69264
69264
  "LevelFour": {
69265
- "shape": "Sl2"
69265
+ "shape": "Sl4"
69266
69266
  },
69267
69267
  "LevelFive": {
69268
- "shape": "Sl2"
69268
+ "shape": "Sl4"
69269
69269
  }
69270
69270
  }
69271
69271
  },
@@ -69289,7 +69289,7 @@ module.exports={
69289
69289
  ],
69290
69290
  "members": {
69291
69291
  "IdentityInfo": {
69292
- "shape": "S5v"
69292
+ "shape": "S5x"
69293
69293
  },
69294
69294
  "UserId": {
69295
69295
  "location": "uri",
@@ -69315,7 +69315,7 @@ module.exports={
69315
69315
  ],
69316
69316
  "members": {
69317
69317
  "PhoneConfig": {
69318
- "shape": "S5z"
69318
+ "shape": "S61"
69319
69319
  },
69320
69320
  "UserId": {
69321
69321
  "location": "uri",
@@ -69365,7 +69365,7 @@ module.exports={
69365
69365
  ],
69366
69366
  "members": {
69367
69367
  "SecurityProfileIds": {
69368
- "shape": "S64"
69368
+ "shape": "S66"
69369
69369
  },
69370
69370
  "UserId": {
69371
69371
  "location": "uri",
@@ -69608,11 +69608,20 @@ module.exports={
69608
69608
  "Channel": {},
69609
69609
  "Concurrency": {
69610
69610
  "type": "integer"
69611
+ },
69612
+ "CrossChannelBehavior": {
69613
+ "type": "structure",
69614
+ "required": [
69615
+ "BehaviorType"
69616
+ ],
69617
+ "members": {
69618
+ "BehaviorType": {}
69619
+ }
69611
69620
  }
69612
69621
  }
69613
69622
  }
69614
69623
  },
69615
- "S3m": {
69624
+ "S3o": {
69616
69625
  "type": "structure",
69617
69626
  "required": [
69618
69627
  "EventSourceName"
@@ -69622,7 +69631,7 @@ module.exports={
69622
69631
  "IntegrationAssociationId": {}
69623
69632
  }
69624
69633
  },
69625
- "S3p": {
69634
+ "S3r": {
69626
69635
  "type": "list",
69627
69636
  "member": {
69628
69637
  "type": "structure",
@@ -69642,7 +69651,7 @@ module.exports={
69642
69651
  "Description": {},
69643
69652
  "ContactFlowId": {},
69644
69653
  "References": {
69645
- "shape": "S3v"
69654
+ "shape": "S3x"
69646
69655
  }
69647
69656
  }
69648
69657
  },
@@ -69691,7 +69700,7 @@ module.exports={
69691
69700
  }
69692
69701
  }
69693
69702
  },
69694
- "S3v": {
69703
+ "S3x": {
69695
69704
  "type": "map",
69696
69705
  "key": {},
69697
69706
  "value": {
@@ -69706,20 +69715,20 @@ module.exports={
69706
69715
  }
69707
69716
  }
69708
69717
  },
69709
- "S4i": {
69718
+ "S4k": {
69710
69719
  "type": "list",
69711
69720
  "member": {}
69712
69721
  },
69713
- "S4k": {
69722
+ "S4m": {
69714
69723
  "type": "map",
69715
69724
  "key": {},
69716
69725
  "value": {}
69717
69726
  },
69718
- "S4n": {
69727
+ "S4p": {
69719
69728
  "type": "list",
69720
69729
  "member": {}
69721
69730
  },
69722
- "S4u": {
69731
+ "S4w": {
69723
69732
  "type": "structure",
69724
69733
  "members": {
69725
69734
  "RequiredFields": {
@@ -69728,7 +69737,7 @@ module.exports={
69728
69737
  "type": "structure",
69729
69738
  "members": {
69730
69739
  "Id": {
69731
- "shape": "S4x"
69740
+ "shape": "S4z"
69732
69741
  }
69733
69742
  }
69734
69743
  }
@@ -69739,7 +69748,7 @@ module.exports={
69739
69748
  "type": "structure",
69740
69749
  "members": {
69741
69750
  "Id": {
69742
- "shape": "S4x"
69751
+ "shape": "S4z"
69743
69752
  }
69744
69753
  }
69745
69754
  }
@@ -69750,20 +69759,20 @@ module.exports={
69750
69759
  "type": "structure",
69751
69760
  "members": {
69752
69761
  "Id": {
69753
- "shape": "S4x"
69762
+ "shape": "S4z"
69754
69763
  }
69755
69764
  }
69756
69765
  }
69757
69766
  }
69758
69767
  }
69759
69768
  },
69760
- "S4x": {
69769
+ "S4z": {
69761
69770
  "type": "structure",
69762
69771
  "members": {
69763
69772
  "Name": {}
69764
69773
  }
69765
69774
  },
69766
- "S53": {
69775
+ "S55": {
69767
69776
  "type": "structure",
69768
69777
  "members": {
69769
69778
  "DefaultFieldValues": {
@@ -69772,7 +69781,7 @@ module.exports={
69772
69781
  "type": "structure",
69773
69782
  "members": {
69774
69783
  "Id": {
69775
- "shape": "S4x"
69784
+ "shape": "S4z"
69776
69785
  },
69777
69786
  "DefaultValue": {}
69778
69787
  }
@@ -69780,7 +69789,7 @@ module.exports={
69780
69789
  }
69781
69790
  }
69782
69791
  },
69783
- "S58": {
69792
+ "S5a": {
69784
69793
  "type": "list",
69785
69794
  "member": {
69786
69795
  "type": "structure",
@@ -69789,7 +69798,7 @@ module.exports={
69789
69798
  ],
69790
69799
  "members": {
69791
69800
  "Id": {
69792
- "shape": "S4x"
69801
+ "shape": "S4z"
69793
69802
  },
69794
69803
  "Description": {},
69795
69804
  "Type": {},
@@ -69800,7 +69809,7 @@ module.exports={
69800
69809
  }
69801
69810
  }
69802
69811
  },
69803
- "S5v": {
69812
+ "S5x": {
69804
69813
  "type": "structure",
69805
69814
  "members": {
69806
69815
  "FirstName": {},
@@ -69810,7 +69819,7 @@ module.exports={
69810
69819
  "Mobile": {}
69811
69820
  }
69812
69821
  },
69813
- "S5z": {
69822
+ "S61": {
69814
69823
  "type": "structure",
69815
69824
  "required": [
69816
69825
  "PhoneType"
@@ -69826,18 +69835,18 @@ module.exports={
69826
69835
  "DeskPhoneNumber": {}
69827
69836
  }
69828
69837
  },
69829
- "S64": {
69838
+ "S66": {
69830
69839
  "type": "list",
69831
69840
  "member": {}
69832
69841
  },
69833
- "S80": {
69842
+ "S82": {
69834
69843
  "type": "structure",
69835
69844
  "members": {
69836
69845
  "AttributeType": {},
69837
69846
  "Value": {}
69838
69847
  }
69839
69848
  },
69840
- "S8e": {
69849
+ "S8g": {
69841
69850
  "type": "structure",
69842
69851
  "members": {
69843
69852
  "Name": {},
@@ -69857,7 +69866,7 @@ module.exports={
69857
69866
  }
69858
69867
  }
69859
69868
  },
69860
- "S8l": {
69869
+ "S8n": {
69861
69870
  "type": "structure",
69862
69871
  "members": {
69863
69872
  "InstanceId": {},
@@ -69880,7 +69889,7 @@ module.exports={
69880
69889
  }
69881
69890
  }
69882
69891
  },
69883
- "S97": {
69892
+ "S99": {
69884
69893
  "type": "structure",
69885
69894
  "members": {
69886
69895
  "Id": {},
@@ -69888,7 +69897,7 @@ module.exports={
69888
69897
  "Name": {}
69889
69898
  }
69890
69899
  },
69891
- "S9b": {
69900
+ "S9d": {
69892
69901
  "type": "structure",
69893
69902
  "members": {
69894
69903
  "Id": {},
@@ -69896,90 +69905,90 @@ module.exports={
69896
69905
  "Name": {}
69897
69906
  }
69898
69907
  },
69899
- "S9w": {
69908
+ "S9y": {
69900
69909
  "type": "map",
69901
69910
  "key": {},
69902
69911
  "value": {}
69903
69912
  },
69904
- "Sa0": {
69913
+ "Sa2": {
69905
69914
  "type": "structure",
69906
69915
  "members": {
69907
69916
  "Queues": {
69908
- "shape": "Sa1"
69917
+ "shape": "Sa3"
69909
69918
  },
69910
69919
  "Channels": {
69911
69920
  "type": "list",
69912
69921
  "member": {}
69913
69922
  },
69914
69923
  "RoutingProfiles": {
69915
- "shape": "Sa3"
69924
+ "shape": "Sa5"
69916
69925
  }
69917
69926
  }
69918
69927
  },
69919
- "Sa1": {
69928
+ "Sa3": {
69920
69929
  "type": "list",
69921
69930
  "member": {}
69922
69931
  },
69923
- "Sa3": {
69932
+ "Sa5": {
69924
69933
  "type": "list",
69925
69934
  "member": {}
69926
69935
  },
69927
- "Sa4": {
69936
+ "Sa6": {
69928
69937
  "type": "list",
69929
69938
  "member": {}
69930
69939
  },
69931
- "Sa7": {
69940
+ "Sa9": {
69932
69941
  "type": "structure",
69933
69942
  "members": {
69934
69943
  "Name": {},
69935
69944
  "Unit": {}
69936
69945
  }
69937
69946
  },
69938
- "Sai": {
69947
+ "Sak": {
69939
69948
  "type": "structure",
69940
69949
  "members": {
69941
69950
  "Queue": {
69942
- "shape": "Saj"
69951
+ "shape": "Sal"
69943
69952
  },
69944
69953
  "Channel": {},
69945
69954
  "RoutingProfile": {
69946
- "shape": "Sak"
69955
+ "shape": "Sam"
69947
69956
  }
69948
69957
  }
69949
69958
  },
69950
- "Saj": {
69959
+ "Sal": {
69951
69960
  "type": "structure",
69952
69961
  "members": {
69953
69962
  "Id": {},
69954
69963
  "Arn": {}
69955
69964
  }
69956
69965
  },
69957
- "Sak": {
69966
+ "Sam": {
69958
69967
  "type": "structure",
69959
69968
  "members": {
69960
69969
  "Id": {},
69961
69970
  "Arn": {}
69962
69971
  }
69963
69972
  },
69964
- "Sb1": {
69973
+ "Sb3": {
69965
69974
  "type": "structure",
69966
69975
  "members": {
69967
69976
  "Id": {},
69968
69977
  "Arn": {}
69969
69978
  }
69970
69979
  },
69971
- "Sb3": {
69980
+ "Sb5": {
69972
69981
  "type": "map",
69973
69982
  "key": {},
69974
69983
  "value": {
69975
69984
  "type": "integer"
69976
69985
  }
69977
69986
  },
69978
- "Sba": {
69987
+ "Sbc": {
69979
69988
  "type": "string",
69980
69989
  "sensitive": true
69981
69990
  },
69982
- "Sbe": {
69991
+ "Sbg": {
69983
69992
  "type": "structure",
69984
69993
  "members": {
69985
69994
  "Name": {},
@@ -69996,7 +70005,7 @@ module.exports={
69996
70005
  "Unit": {}
69997
70006
  }
69998
70007
  },
69999
- "Sbx": {
70008
+ "Sbz": {
70000
70009
  "type": "structure",
70001
70010
  "members": {
70002
70011
  "Name": {},
@@ -70027,7 +70036,7 @@ module.exports={
70027
70036
  }
70028
70037
  }
70029
70038
  },
70030
- "Sci": {
70039
+ "Sck": {
70031
70040
  "type": "structure",
70032
70041
  "required": [
70033
70042
  "Distributions"
@@ -70051,15 +70060,15 @@ module.exports={
70051
70060
  }
70052
70061
  }
70053
70062
  },
70054
- "Sek": {
70063
+ "Sem": {
70055
70064
  "type": "list",
70056
70065
  "member": {}
70057
70066
  },
70058
- "Sel": {
70067
+ "Sen": {
70059
70068
  "type": "list",
70060
70069
  "member": {}
70061
70070
  },
70062
- "Sf3": {
70071
+ "Sf5": {
70063
70072
  "type": "list",
70064
70073
  "member": {
70065
70074
  "type": "structure",
@@ -70071,58 +70080,58 @@ module.exports={
70071
70080
  }
70072
70081
  }
70073
70082
  },
70074
- "Sh7": {
70083
+ "Sh9": {
70075
70084
  "type": "structure",
70076
70085
  "members": {
70077
70086
  "OrConditions": {
70078
70087
  "type": "list",
70079
70088
  "member": {
70080
- "shape": "Sh9"
70089
+ "shape": "Shb"
70081
70090
  }
70082
70091
  },
70083
70092
  "AndConditions": {
70084
- "shape": "Sh9"
70093
+ "shape": "Shb"
70085
70094
  },
70086
70095
  "TagCondition": {
70087
- "shape": "Sha"
70096
+ "shape": "Shc"
70088
70097
  }
70089
70098
  }
70090
70099
  },
70091
- "Sh9": {
70100
+ "Shb": {
70092
70101
  "type": "list",
70093
70102
  "member": {
70094
- "shape": "Sha"
70103
+ "shape": "Shc"
70095
70104
  }
70096
70105
  },
70097
- "Sha": {
70106
+ "Shc": {
70098
70107
  "type": "structure",
70099
70108
  "members": {
70100
70109
  "TagKey": {},
70101
70110
  "TagValue": {}
70102
70111
  }
70103
70112
  },
70104
- "Shb": {
70113
+ "Shd": {
70105
70114
  "type": "structure",
70106
70115
  "members": {
70107
70116
  "OrConditions": {
70108
- "shape": "Shc"
70117
+ "shape": "She"
70109
70118
  },
70110
70119
  "AndConditions": {
70111
- "shape": "Shc"
70120
+ "shape": "She"
70112
70121
  },
70113
70122
  "StringCondition": {
70114
- "shape": "Shd"
70123
+ "shape": "Shf"
70115
70124
  },
70116
70125
  "QueueTypeCondition": {}
70117
70126
  }
70118
70127
  },
70119
- "Shc": {
70128
+ "She": {
70120
70129
  "type": "list",
70121
70130
  "member": {
70122
- "shape": "Shb"
70131
+ "shape": "Shd"
70123
70132
  }
70124
70133
  },
70125
- "Shd": {
70134
+ "Shf": {
70126
70135
  "type": "structure",
70127
70136
  "members": {
70128
70137
  "FieldName": {},
@@ -70130,57 +70139,57 @@ module.exports={
70130
70139
  "ComparisonType": {}
70131
70140
  }
70132
70141
  },
70133
- "Shk": {
70142
+ "Shm": {
70134
70143
  "type": "structure",
70135
70144
  "members": {
70136
70145
  "OrConditions": {
70137
- "shape": "Shl"
70146
+ "shape": "Shn"
70138
70147
  },
70139
70148
  "AndConditions": {
70140
- "shape": "Shl"
70149
+ "shape": "Shn"
70141
70150
  },
70142
70151
  "StringCondition": {
70143
- "shape": "Shd"
70152
+ "shape": "Shf"
70144
70153
  }
70145
70154
  }
70146
70155
  },
70147
- "Shl": {
70156
+ "Shn": {
70148
70157
  "type": "list",
70149
70158
  "member": {
70150
- "shape": "Shk"
70159
+ "shape": "Shm"
70151
70160
  }
70152
70161
  },
70153
- "Shp": {
70162
+ "Shr": {
70154
70163
  "type": "structure",
70155
70164
  "members": {
70156
70165
  "OrConditions": {
70157
- "shape": "Shq"
70166
+ "shape": "Shs"
70158
70167
  },
70159
70168
  "AndConditions": {
70160
- "shape": "Shq"
70169
+ "shape": "Shs"
70161
70170
  },
70162
70171
  "StringCondition": {
70163
- "shape": "Shd"
70172
+ "shape": "Shf"
70164
70173
  }
70165
70174
  }
70166
70175
  },
70167
- "Shq": {
70176
+ "Shs": {
70168
70177
  "type": "list",
70169
70178
  "member": {
70170
- "shape": "Shp"
70179
+ "shape": "Shr"
70171
70180
  }
70172
70181
  },
70173
- "Shx": {
70182
+ "Shz": {
70174
70183
  "type": "structure",
70175
70184
  "members": {
70176
70185
  "OrConditions": {
70177
- "shape": "Shy"
70186
+ "shape": "Si0"
70178
70187
  },
70179
70188
  "AndConditions": {
70180
- "shape": "Shy"
70189
+ "shape": "Si0"
70181
70190
  },
70182
70191
  "StringCondition": {
70183
- "shape": "Shd"
70192
+ "shape": "Shf"
70184
70193
  },
70185
70194
  "HierarchyGroupCondition": {
70186
70195
  "type": "structure",
@@ -70191,13 +70200,13 @@ module.exports={
70191
70200
  }
70192
70201
  }
70193
70202
  },
70194
- "Shy": {
70203
+ "Si0": {
70195
70204
  "type": "list",
70196
70205
  "member": {
70197
- "shape": "Shx"
70206
+ "shape": "Shz"
70198
70207
  }
70199
70208
  },
70200
- "Sl2": {
70209
+ "Sl4": {
70201
70210
  "type": "structure",
70202
70211
  "required": [
70203
70212
  "Name"
@@ -179119,6 +179128,28 @@ module.exports={
179119
179128
  }
179120
179129
  }
179121
179130
  },
179131
+ "DeleteResourcePolicy": {
179132
+ "http": {
179133
+ "method": "DELETE",
179134
+ "requestUri": "/DeleteResourcePolicy"
179135
+ },
179136
+ "input": {
179137
+ "type": "structure",
179138
+ "required": [
179139
+ "ResourceArn"
179140
+ ],
179141
+ "members": {
179142
+ "ResourceArn": {
179143
+ "location": "querystring",
179144
+ "locationName": "resourceArn"
179145
+ }
179146
+ }
179147
+ },
179148
+ "output": {
179149
+ "type": "structure",
179150
+ "members": {}
179151
+ }
179152
+ },
179122
179153
  "DescribeChangeSet": {
179123
179154
  "http": {
179124
179155
  "method": "GET",
@@ -179159,7 +179190,7 @@ module.exports={
179159
179190
  "members": {
179160
179191
  "ChangeType": {},
179161
179192
  "Entity": {
179162
- "shape": "Sg"
179193
+ "shape": "Sj"
179163
179194
  },
179164
179195
  "Details": {},
179165
179196
  "ErrorDetailList": {
@@ -179212,6 +179243,30 @@ module.exports={
179212
179243
  }
179213
179244
  }
179214
179245
  },
179246
+ "GetResourcePolicy": {
179247
+ "http": {
179248
+ "method": "GET",
179249
+ "requestUri": "/GetResourcePolicy"
179250
+ },
179251
+ "input": {
179252
+ "type": "structure",
179253
+ "required": [
179254
+ "ResourceArn"
179255
+ ],
179256
+ "members": {
179257
+ "ResourceArn": {
179258
+ "location": "querystring",
179259
+ "locationName": "resourceArn"
179260
+ }
179261
+ }
179262
+ },
179263
+ "output": {
179264
+ "type": "structure",
179265
+ "members": {
179266
+ "Policy": {}
179267
+ }
179268
+ }
179269
+ },
179215
179270
  "ListChangeSets": {
179216
179271
  "http": {
179217
179272
  "requestUri": "/ListChangeSets"
@@ -179224,10 +179279,10 @@ module.exports={
179224
179279
  "members": {
179225
179280
  "Catalog": {},
179226
179281
  "FilterList": {
179227
- "shape": "Sr"
179282
+ "shape": "Sx"
179228
179283
  },
179229
179284
  "Sort": {
179230
- "shape": "Sw"
179285
+ "shape": "S12"
179231
179286
  },
179232
179287
  "MaxResults": {
179233
179288
  "type": "integer"
@@ -179275,15 +179330,16 @@ module.exports={
179275
179330
  "Catalog": {},
179276
179331
  "EntityType": {},
179277
179332
  "FilterList": {
179278
- "shape": "Sr"
179333
+ "shape": "Sx"
179279
179334
  },
179280
179335
  "Sort": {
179281
- "shape": "Sw"
179336
+ "shape": "S12"
179282
179337
  },
179283
179338
  "NextToken": {},
179284
179339
  "MaxResults": {
179285
179340
  "type": "integer"
179286
- }
179341
+ },
179342
+ "OwnershipType": {}
179287
179343
  }
179288
179344
  },
179289
179345
  "output": {
@@ -179325,11 +179381,31 @@ module.exports={
179325
179381
  "members": {
179326
179382
  "ResourceArn": {},
179327
179383
  "Tags": {
179328
- "shape": "S1e"
179384
+ "shape": "S1l"
179329
179385
  }
179330
179386
  }
179331
179387
  }
179332
179388
  },
179389
+ "PutResourcePolicy": {
179390
+ "http": {
179391
+ "requestUri": "/PutResourcePolicy"
179392
+ },
179393
+ "input": {
179394
+ "type": "structure",
179395
+ "required": [
179396
+ "ResourceArn",
179397
+ "Policy"
179398
+ ],
179399
+ "members": {
179400
+ "ResourceArn": {},
179401
+ "Policy": {}
179402
+ }
179403
+ },
179404
+ "output": {
179405
+ "type": "structure",
179406
+ "members": {}
179407
+ }
179408
+ },
179333
179409
  "StartChangeSet": {
179334
179410
  "http": {
179335
179411
  "requestUri": "/StartChangeSet"
@@ -179354,10 +179430,10 @@ module.exports={
179354
179430
  "members": {
179355
179431
  "ChangeType": {},
179356
179432
  "Entity": {
179357
- "shape": "Sg"
179433
+ "shape": "Sj"
179358
179434
  },
179359
179435
  "EntityTags": {
179360
- "shape": "S1e"
179436
+ "shape": "S1l"
179361
179437
  },
179362
179438
  "Details": {},
179363
179439
  "ChangeName": {}
@@ -179369,7 +179445,7 @@ module.exports={
179369
179445
  "idempotencyToken": true
179370
179446
  },
179371
179447
  "ChangeSetTags": {
179372
- "shape": "S1e"
179448
+ "shape": "S1l"
179373
179449
  }
179374
179450
  }
179375
179451
  },
@@ -179394,7 +179470,7 @@ module.exports={
179394
179470
  "members": {
179395
179471
  "ResourceArn": {},
179396
179472
  "Tags": {
179397
- "shape": "S1e"
179473
+ "shape": "S1l"
179398
179474
  }
179399
179475
  }
179400
179476
  },
@@ -179428,7 +179504,7 @@ module.exports={
179428
179504
  }
179429
179505
  },
179430
179506
  "shapes": {
179431
- "Sg": {
179507
+ "Sj": {
179432
179508
  "type": "structure",
179433
179509
  "required": [
179434
179510
  "Type"
@@ -179438,7 +179514,7 @@ module.exports={
179438
179514
  "Identifier": {}
179439
179515
  }
179440
179516
  },
179441
- "Sr": {
179517
+ "Sx": {
179442
179518
  "type": "list",
179443
179519
  "member": {
179444
179520
  "type": "structure",
@@ -179451,14 +179527,14 @@ module.exports={
179451
179527
  }
179452
179528
  }
179453
179529
  },
179454
- "Sw": {
179530
+ "S12": {
179455
179531
  "type": "structure",
179456
179532
  "members": {
179457
179533
  "SortBy": {},
179458
179534
  "SortOrder": {}
179459
179535
  }
179460
179536
  },
179461
- "S1e": {
179537
+ "S1l": {
179462
179538
  "type": "list",
179463
179539
  "member": {
179464
179540
  "type": "structure",
@@ -210835,6 +210911,43 @@ module.exports={
210835
210911
  }
210836
210912
  }
210837
210913
  },
210914
+ "CreateFaceLivenessSession": {
210915
+ "input": {
210916
+ "type": "structure",
210917
+ "members": {
210918
+ "KmsKeyId": {},
210919
+ "Settings": {
210920
+ "type": "structure",
210921
+ "members": {
210922
+ "OutputConfig": {
210923
+ "type": "structure",
210924
+ "required": [
210925
+ "S3Bucket"
210926
+ ],
210927
+ "members": {
210928
+ "S3Bucket": {},
210929
+ "S3KeyPrefix": {}
210930
+ }
210931
+ },
210932
+ "AuditImagesLimit": {
210933
+ "type": "integer"
210934
+ }
210935
+ }
210936
+ },
210937
+ "ClientRequestToken": {}
210938
+ }
210939
+ },
210940
+ "output": {
210941
+ "type": "structure",
210942
+ "required": [
210943
+ "SessionId"
210944
+ ],
210945
+ "members": {
210946
+ "SessionId": {}
210947
+ }
210948
+ },
210949
+ "idempotent": true
210950
+ },
210838
210951
  "CreateProject": {
210839
210952
  "input": {
210840
210953
  "type": "structure",
@@ -210867,10 +210980,10 @@ module.exports={
210867
210980
  "shape": "Sy"
210868
210981
  },
210869
210982
  "TrainingData": {
210870
- "shape": "S1k"
210983
+ "shape": "S1s"
210871
210984
  },
210872
210985
  "TestingData": {
210873
- "shape": "S1n"
210986
+ "shape": "S1v"
210874
210987
  },
210875
210988
  "Tags": {
210876
210989
  "shape": "S10"
@@ -210897,28 +211010,28 @@ module.exports={
210897
211010
  ],
210898
211011
  "members": {
210899
211012
  "Input": {
210900
- "shape": "S1q"
211013
+ "shape": "S1y"
210901
211014
  },
210902
211015
  "Output": {
210903
- "shape": "S1t"
211016
+ "shape": "S21"
210904
211017
  },
210905
211018
  "Name": {},
210906
211019
  "Settings": {
210907
- "shape": "S1y"
211020
+ "shape": "S26"
210908
211021
  },
210909
211022
  "RoleArn": {},
210910
211023
  "Tags": {
210911
211024
  "shape": "S10"
210912
211025
  },
210913
211026
  "NotificationChannel": {
210914
- "shape": "S24"
211027
+ "shape": "S2c"
210915
211028
  },
210916
211029
  "KmsKeyId": {},
210917
211030
  "RegionsOfInterest": {
210918
- "shape": "S26"
211031
+ "shape": "S2e"
210919
211032
  },
210920
211033
  "DataSharingPreference": {
210921
- "shape": "S2a"
211034
+ "shape": "S2i"
210922
211035
  }
210923
211036
  }
210924
211037
  },
@@ -210973,7 +211086,7 @@ module.exports={
210973
211086
  "members": {
210974
211087
  "CollectionId": {},
210975
211088
  "FaceIds": {
210976
- "shape": "S2i"
211089
+ "shape": "S2q"
210977
211090
  }
210978
211091
  }
210979
211092
  },
@@ -210981,7 +211094,7 @@ module.exports={
210981
211094
  "type": "structure",
210982
211095
  "members": {
210983
211096
  "DeletedFaces": {
210984
- "shape": "S2i"
211097
+ "shape": "S2q"
210985
211098
  }
210986
211099
  }
210987
211100
  }
@@ -211172,13 +211285,13 @@ module.exports={
211172
211285
  "type": "structure",
211173
211286
  "members": {
211174
211287
  "Input": {
211175
- "shape": "S1k"
211288
+ "shape": "S1s"
211176
211289
  },
211177
211290
  "Output": {
211178
- "shape": "S1k"
211291
+ "shape": "S1s"
211179
211292
  },
211180
211293
  "Validation": {
211181
- "shape": "S3h"
211294
+ "shape": "S3p"
211182
211295
  }
211183
211296
  }
211184
211297
  },
@@ -211186,13 +211299,13 @@ module.exports={
211186
211299
  "type": "structure",
211187
211300
  "members": {
211188
211301
  "Input": {
211189
- "shape": "S1n"
211302
+ "shape": "S1v"
211190
211303
  },
211191
211304
  "Output": {
211192
- "shape": "S1n"
211305
+ "shape": "S1v"
211193
211306
  },
211194
211307
  "Validation": {
211195
- "shape": "S3h"
211308
+ "shape": "S3p"
211196
211309
  }
211197
211310
  }
211198
211311
  },
@@ -211301,24 +211414,24 @@ module.exports={
211301
211414
  "type": "timestamp"
211302
211415
  },
211303
211416
  "Input": {
211304
- "shape": "S1q"
211417
+ "shape": "S1y"
211305
211418
  },
211306
211419
  "Output": {
211307
- "shape": "S1t"
211420
+ "shape": "S21"
211308
211421
  },
211309
211422
  "RoleArn": {},
211310
211423
  "Settings": {
211311
- "shape": "S1y"
211424
+ "shape": "S26"
211312
211425
  },
211313
211426
  "NotificationChannel": {
211314
- "shape": "S24"
211427
+ "shape": "S2c"
211315
211428
  },
211316
211429
  "KmsKeyId": {},
211317
211430
  "RegionsOfInterest": {
211318
- "shape": "S26"
211431
+ "shape": "S2e"
211319
211432
  },
211320
211433
  "DataSharingPreference": {
211321
- "shape": "S2a"
211434
+ "shape": "S2i"
211322
211435
  }
211323
211436
  }
211324
211437
  }
@@ -211356,7 +211469,7 @@ module.exports={
211356
211469
  "type": "float"
211357
211470
  },
211358
211471
  "Geometry": {
211359
- "shape": "S40"
211472
+ "shape": "S48"
211360
211473
  }
211361
211474
  }
211362
211475
  }
@@ -211375,7 +211488,7 @@ module.exports={
211375
211488
  "shape": "S2"
211376
211489
  },
211377
211490
  "Attributes": {
211378
- "shape": "S42"
211491
+ "shape": "S4a"
211379
211492
  }
211380
211493
  }
211381
211494
  },
@@ -211385,7 +211498,7 @@ module.exports={
211385
211498
  "FaceDetails": {
211386
211499
  "type": "list",
211387
211500
  "member": {
211388
- "shape": "S46"
211501
+ "shape": "S4e"
211389
211502
  }
211390
211503
  },
211391
211504
  "OrientationCorrection": {}
@@ -211416,7 +211529,7 @@ module.exports={
211416
211529
  "type": "structure",
211417
211530
  "members": {
211418
211531
  "GeneralLabels": {
211419
- "shape": "S4k"
211532
+ "shape": "S4s"
211420
211533
  },
211421
211534
  "ImageProperties": {
211422
211535
  "type": "structure",
@@ -211436,7 +211549,7 @@ module.exports={
211436
211549
  "Labels": {
211437
211550
  "type": "list",
211438
211551
  "member": {
211439
- "shape": "S4r"
211552
+ "shape": "S4z"
211440
211553
  }
211441
211554
  },
211442
211555
  "OrientationCorrection": {},
@@ -211445,19 +211558,19 @@ module.exports={
211445
211558
  "type": "structure",
211446
211559
  "members": {
211447
211560
  "Quality": {
211448
- "shape": "S53"
211561
+ "shape": "S5b"
211449
211562
  },
211450
211563
  "DominantColors": {
211451
- "shape": "S4u"
211564
+ "shape": "S52"
211452
211565
  },
211453
211566
  "Foreground": {
211454
211567
  "type": "structure",
211455
211568
  "members": {
211456
211569
  "Quality": {
211457
- "shape": "S53"
211570
+ "shape": "S5b"
211458
211571
  },
211459
211572
  "DominantColors": {
211460
- "shape": "S4u"
211573
+ "shape": "S52"
211461
211574
  }
211462
211575
  }
211463
211576
  },
@@ -211465,10 +211578,10 @@ module.exports={
211465
211578
  "type": "structure",
211466
211579
  "members": {
211467
211580
  "Quality": {
211468
- "shape": "S53"
211581
+ "shape": "S5b"
211469
211582
  },
211470
211583
  "DominantColors": {
211471
- "shape": "S4u"
211584
+ "shape": "S52"
211472
211585
  }
211473
211586
  }
211474
211587
  }
@@ -211518,7 +211631,7 @@ module.exports={
211518
211631
  "ModerationLabels": {
211519
211632
  "type": "list",
211520
211633
  "member": {
211521
- "shape": "S5f"
211634
+ "shape": "S5n"
211522
211635
  }
211523
211636
  },
211524
211637
  "ModerationModelVersion": {},
@@ -211629,13 +211742,13 @@ module.exports={
211629
211742
  "type": "structure",
211630
211743
  "members": {
211631
211744
  "PersonsWithRequiredEquipment": {
211632
- "shape": "S5z"
211745
+ "shape": "S67"
211633
211746
  },
211634
211747
  "PersonsWithoutRequiredEquipment": {
211635
- "shape": "S5z"
211748
+ "shape": "S67"
211636
211749
  },
211637
211750
  "PersonsIndeterminate": {
211638
- "shape": "S5z"
211751
+ "shape": "S67"
211639
211752
  }
211640
211753
  }
211641
211754
  }
@@ -211656,10 +211769,10 @@ module.exports={
211656
211769
  "type": "structure",
211657
211770
  "members": {
211658
211771
  "WordFilter": {
211659
- "shape": "S62"
211772
+ "shape": "S6a"
211660
211773
  },
211661
211774
  "RegionsOfInterest": {
211662
- "shape": "S26"
211775
+ "shape": "S2e"
211663
211776
  }
211664
211777
  }
211665
211778
  }
@@ -211671,7 +211784,7 @@ module.exports={
211671
211784
  "TextDetections": {
211672
211785
  "type": "list",
211673
211786
  "member": {
211674
- "shape": "S67"
211787
+ "shape": "S6f"
211675
211788
  }
211676
211789
  },
211677
211790
  "TextModelVersion": {}
@@ -211718,11 +211831,11 @@ module.exports={
211718
211831
  "type": "structure",
211719
211832
  "members": {
211720
211833
  "Urls": {
211721
- "shape": "S6g"
211834
+ "shape": "S6o"
211722
211835
  },
211723
211836
  "Name": {},
211724
211837
  "KnownGender": {
211725
- "shape": "S6i"
211838
+ "shape": "S6q"
211726
211839
  }
211727
211840
  }
211728
211841
  }
@@ -211748,7 +211861,7 @@ module.exports={
211748
211861
  "JobStatus": {},
211749
211862
  "StatusMessage": {},
211750
211863
  "VideoMetadata": {
211751
- "shape": "S6r"
211864
+ "shape": "S6z"
211752
211865
  },
211753
211866
  "NextToken": {},
211754
211867
  "Celebrities": {
@@ -211763,7 +211876,7 @@ module.exports={
211763
211876
  "type": "structure",
211764
211877
  "members": {
211765
211878
  "Urls": {
211766
- "shape": "S6g"
211879
+ "shape": "S6o"
211767
211880
  },
211768
211881
  "Name": {},
211769
211882
  "Id": {},
@@ -211774,10 +211887,10 @@ module.exports={
211774
211887
  "shape": "Sc"
211775
211888
  },
211776
211889
  "Face": {
211777
- "shape": "S46"
211890
+ "shape": "S4e"
211778
211891
  },
211779
211892
  "KnownGender": {
211780
- "shape": "S6i"
211893
+ "shape": "S6q"
211781
211894
  }
211782
211895
  }
211783
211896
  }
@@ -211808,7 +211921,7 @@ module.exports={
211808
211921
  "JobStatus": {},
211809
211922
  "StatusMessage": {},
211810
211923
  "VideoMetadata": {
211811
- "shape": "S6r"
211924
+ "shape": "S6z"
211812
211925
  },
211813
211926
  "ModerationLabels": {
211814
211927
  "type": "list",
@@ -211819,7 +211932,7 @@ module.exports={
211819
211932
  "type": "long"
211820
211933
  },
211821
211934
  "ModerationLabel": {
211822
- "shape": "S5f"
211935
+ "shape": "S5n"
211823
211936
  }
211824
211937
  }
211825
211938
  }
@@ -211849,7 +211962,7 @@ module.exports={
211849
211962
  "JobStatus": {},
211850
211963
  "StatusMessage": {},
211851
211964
  "VideoMetadata": {
211852
- "shape": "S6r"
211965
+ "shape": "S6z"
211853
211966
  },
211854
211967
  "NextToken": {},
211855
211968
  "Faces": {
@@ -211861,7 +211974,7 @@ module.exports={
211861
211974
  "type": "long"
211862
211975
  },
211863
211976
  "Face": {
211864
- "shape": "S46"
211977
+ "shape": "S4e"
211865
211978
  }
211866
211979
  }
211867
211980
  }
@@ -211869,6 +211982,40 @@ module.exports={
211869
211982
  }
211870
211983
  }
211871
211984
  },
211985
+ "GetFaceLivenessSessionResults": {
211986
+ "input": {
211987
+ "type": "structure",
211988
+ "required": [
211989
+ "SessionId"
211990
+ ],
211991
+ "members": {
211992
+ "SessionId": {}
211993
+ }
211994
+ },
211995
+ "output": {
211996
+ "type": "structure",
211997
+ "required": [
211998
+ "SessionId",
211999
+ "Status"
212000
+ ],
212001
+ "members": {
212002
+ "SessionId": {},
212003
+ "Status": {},
212004
+ "Confidence": {
212005
+ "type": "float"
212006
+ },
212007
+ "ReferenceImage": {
212008
+ "shape": "S7h"
212009
+ },
212010
+ "AuditImages": {
212011
+ "type": "list",
212012
+ "member": {
212013
+ "shape": "S7h"
212014
+ }
212015
+ }
212016
+ }
212017
+ }
212018
+ },
211872
212019
  "GetFaceSearch": {
211873
212020
  "input": {
211874
212021
  "type": "structure",
@@ -211891,7 +212038,7 @@ module.exports={
211891
212038
  "StatusMessage": {},
211892
212039
  "NextToken": {},
211893
212040
  "VideoMetadata": {
211894
- "shape": "S6r"
212041
+ "shape": "S6z"
211895
212042
  },
211896
212043
  "Persons": {
211897
212044
  "type": "list",
@@ -211902,10 +212049,10 @@ module.exports={
211902
212049
  "type": "long"
211903
212050
  },
211904
212051
  "Person": {
211905
- "shape": "S7b"
212052
+ "shape": "S7p"
211906
212053
  },
211907
212054
  "FaceMatches": {
211908
- "shape": "S7d"
212055
+ "shape": "S7r"
211909
212056
  }
211910
212057
  }
211911
212058
  }
@@ -211935,7 +212082,7 @@ module.exports={
211935
212082
  "JobStatus": {},
211936
212083
  "StatusMessage": {},
211937
212084
  "VideoMetadata": {
211938
- "shape": "S6r"
212085
+ "shape": "S6z"
211939
212086
  },
211940
212087
  "NextToken": {},
211941
212088
  "Labels": {
@@ -211947,7 +212094,7 @@ module.exports={
211947
212094
  "type": "long"
211948
212095
  },
211949
212096
  "Label": {
211950
- "shape": "S4r"
212097
+ "shape": "S4z"
211951
212098
  },
211952
212099
  "StartTimestampMillis": {
211953
212100
  "type": "long"
@@ -211986,7 +212133,7 @@ module.exports={
211986
212133
  "JobStatus": {},
211987
212134
  "StatusMessage": {},
211988
212135
  "VideoMetadata": {
211989
- "shape": "S6r"
212136
+ "shape": "S6z"
211990
212137
  },
211991
212138
  "NextToken": {},
211992
212139
  "Persons": {
@@ -211998,7 +212145,7 @@ module.exports={
211998
212145
  "type": "long"
211999
212146
  },
212000
212147
  "Person": {
212001
- "shape": "S7b"
212148
+ "shape": "S7p"
212002
212149
  }
212003
212150
  }
212004
212151
  }
@@ -212028,7 +212175,7 @@ module.exports={
212028
212175
  "VideoMetadata": {
212029
212176
  "type": "list",
212030
212177
  "member": {
212031
- "shape": "S6r"
212178
+ "shape": "S6z"
212032
212179
  }
212033
212180
  },
212034
212181
  "AudioMetadata": {
@@ -212133,7 +212280,7 @@ module.exports={
212133
212280
  "JobStatus": {},
212134
212281
  "StatusMessage": {},
212135
212282
  "VideoMetadata": {
212136
- "shape": "S6r"
212283
+ "shape": "S6z"
212137
212284
  },
212138
212285
  "TextDetections": {
212139
212286
  "type": "list",
@@ -212144,7 +212291,7 @@ module.exports={
212144
212291
  "type": "long"
212145
212292
  },
212146
212293
  "TextDetection": {
212147
- "shape": "S67"
212294
+ "shape": "S6f"
212148
212295
  }
212149
212296
  }
212150
212297
  }
@@ -212168,7 +212315,7 @@ module.exports={
212168
212315
  },
212169
212316
  "ExternalImageId": {},
212170
212317
  "DetectionAttributes": {
212171
- "shape": "S42"
212318
+ "shape": "S4a"
212172
212319
  },
212173
212320
  "MaxFaces": {
212174
212321
  "type": "integer"
@@ -212185,10 +212332,10 @@ module.exports={
212185
212332
  "type": "structure",
212186
212333
  "members": {
212187
212334
  "Face": {
212188
- "shape": "S7f"
212335
+ "shape": "S7t"
212189
212336
  },
212190
212337
  "FaceDetail": {
212191
- "shape": "S46"
212338
+ "shape": "S4e"
212192
212339
  }
212193
212340
  }
212194
212341
  }
@@ -212205,7 +212352,7 @@ module.exports={
212205
212352
  "member": {}
212206
212353
  },
212207
212354
  "FaceDetail": {
212208
- "shape": "S46"
212355
+ "shape": "S4e"
212209
212356
  }
212210
212357
  }
212211
212358
  }
@@ -212335,7 +212482,7 @@ module.exports={
212335
212482
  "Faces": {
212336
212483
  "type": "list",
212337
212484
  "member": {
212338
- "shape": "S7f"
212485
+ "shape": "S7t"
212339
212486
  }
212340
212487
  },
212341
212488
  "NextToken": {},
@@ -212471,7 +212618,7 @@ module.exports={
212471
212618
  "type": "structure",
212472
212619
  "members": {
212473
212620
  "Urls": {
212474
- "shape": "S6g"
212621
+ "shape": "S6o"
212475
212622
  },
212476
212623
  "Name": {},
212477
212624
  "Id": {},
@@ -212482,7 +212629,7 @@ module.exports={
212482
212629
  "type": "float"
212483
212630
  },
212484
212631
  "KnownGender": {
212485
- "shape": "S6i"
212632
+ "shape": "S6q"
212486
212633
  }
212487
212634
  }
212488
212635
  }
@@ -212520,7 +212667,7 @@ module.exports={
212520
212667
  "members": {
212521
212668
  "SearchedFaceId": {},
212522
212669
  "FaceMatches": {
212523
- "shape": "S7d"
212670
+ "shape": "S7r"
212524
212671
  },
212525
212672
  "FaceModelVersion": {}
212526
212673
  }
@@ -212557,7 +212704,7 @@ module.exports={
212557
212704
  "type": "float"
212558
212705
  },
212559
212706
  "FaceMatches": {
212560
- "shape": "S7d"
212707
+ "shape": "S7r"
212561
212708
  },
212562
212709
  "FaceModelVersion": {}
212563
212710
  }
@@ -212571,11 +212718,11 @@ module.exports={
212571
212718
  ],
212572
212719
  "members": {
212573
212720
  "Video": {
212574
- "shape": "Sa0"
212721
+ "shape": "Sae"
212575
212722
  },
212576
212723
  "ClientRequestToken": {},
212577
212724
  "NotificationChannel": {
212578
- "shape": "Sa2"
212725
+ "shape": "Saf"
212579
212726
  },
212580
212727
  "JobTag": {}
212581
212728
  }
@@ -212596,14 +212743,14 @@ module.exports={
212596
212743
  ],
212597
212744
  "members": {
212598
212745
  "Video": {
212599
- "shape": "Sa0"
212746
+ "shape": "Sae"
212600
212747
  },
212601
212748
  "MinConfidence": {
212602
212749
  "type": "float"
212603
212750
  },
212604
212751
  "ClientRequestToken": {},
212605
212752
  "NotificationChannel": {
212606
- "shape": "Sa2"
212753
+ "shape": "Saf"
212607
212754
  },
212608
212755
  "JobTag": {}
212609
212756
  }
@@ -212624,11 +212771,11 @@ module.exports={
212624
212771
  ],
212625
212772
  "members": {
212626
212773
  "Video": {
212627
- "shape": "Sa0"
212774
+ "shape": "Sae"
212628
212775
  },
212629
212776
  "ClientRequestToken": {},
212630
212777
  "NotificationChannel": {
212631
- "shape": "Sa2"
212778
+ "shape": "Saf"
212632
212779
  },
212633
212780
  "FaceAttributes": {},
212634
212781
  "JobTag": {}
@@ -212651,7 +212798,7 @@ module.exports={
212651
212798
  ],
212652
212799
  "members": {
212653
212800
  "Video": {
212654
- "shape": "Sa0"
212801
+ "shape": "Sae"
212655
212802
  },
212656
212803
  "ClientRequestToken": {},
212657
212804
  "FaceMatchThreshold": {
@@ -212659,7 +212806,7 @@ module.exports={
212659
212806
  },
212660
212807
  "CollectionId": {},
212661
212808
  "NotificationChannel": {
212662
- "shape": "Sa2"
212809
+ "shape": "Saf"
212663
212810
  },
212664
212811
  "JobTag": {}
212665
212812
  }
@@ -212680,14 +212827,14 @@ module.exports={
212680
212827
  ],
212681
212828
  "members": {
212682
212829
  "Video": {
212683
- "shape": "Sa0"
212830
+ "shape": "Sae"
212684
212831
  },
212685
212832
  "ClientRequestToken": {},
212686
212833
  "MinConfidence": {
212687
212834
  "type": "float"
212688
212835
  },
212689
212836
  "NotificationChannel": {
212690
- "shape": "Sa2"
212837
+ "shape": "Saf"
212691
212838
  },
212692
212839
  "JobTag": {},
212693
212840
  "Features": {
@@ -212698,7 +212845,7 @@ module.exports={
212698
212845
  "type": "structure",
212699
212846
  "members": {
212700
212847
  "GeneralLabels": {
212701
- "shape": "S4k"
212848
+ "shape": "S4s"
212702
212849
  }
212703
212850
  }
212704
212851
  }
@@ -212720,11 +212867,11 @@ module.exports={
212720
212867
  ],
212721
212868
  "members": {
212722
212869
  "Video": {
212723
- "shape": "Sa0"
212870
+ "shape": "Sae"
212724
212871
  },
212725
212872
  "ClientRequestToken": {},
212726
212873
  "NotificationChannel": {
212727
- "shape": "Sa2"
212874
+ "shape": "Saf"
212728
212875
  },
212729
212876
  "JobTag": {}
212730
212877
  }
@@ -212770,11 +212917,11 @@ module.exports={
212770
212917
  ],
212771
212918
  "members": {
212772
212919
  "Video": {
212773
- "shape": "Sa0"
212920
+ "shape": "Sae"
212774
212921
  },
212775
212922
  "ClientRequestToken": {},
212776
212923
  "NotificationChannel": {
212777
- "shape": "Sa2"
212924
+ "shape": "Saf"
212778
212925
  },
212779
212926
  "JobTag": {},
212780
212927
  "Filters": {
@@ -212870,21 +213017,21 @@ module.exports={
212870
213017
  ],
212871
213018
  "members": {
212872
213019
  "Video": {
212873
- "shape": "Sa0"
213020
+ "shape": "Sae"
212874
213021
  },
212875
213022
  "ClientRequestToken": {},
212876
213023
  "NotificationChannel": {
212877
- "shape": "Sa2"
213024
+ "shape": "Saf"
212878
213025
  },
212879
213026
  "JobTag": {},
212880
213027
  "Filters": {
212881
213028
  "type": "structure",
212882
213029
  "members": {
212883
213030
  "WordFilter": {
212884
- "shape": "S62"
213031
+ "shape": "S6a"
212885
213032
  },
212886
213033
  "RegionsOfInterest": {
212887
- "shape": "S26"
213034
+ "shape": "S2e"
212888
213035
  }
212889
213036
  }
212890
213037
  }
@@ -213011,7 +213158,7 @@ module.exports={
213011
213158
  "type": "structure",
213012
213159
  "members": {
213013
213160
  "Labels": {
213014
- "shape": "S21"
213161
+ "shape": "S29"
213015
213162
  },
213016
213163
  "MinConfidence": {
213017
213164
  "type": "float"
@@ -213021,10 +213168,10 @@ module.exports={
213021
213168
  }
213022
213169
  },
213023
213170
  "RegionsOfInterestForUpdate": {
213024
- "shape": "S26"
213171
+ "shape": "S2e"
213025
213172
  },
213026
213173
  "DataSharingPreferenceForUpdate": {
213027
- "shape": "S2a"
213174
+ "shape": "S2i"
213028
213175
  },
213029
213176
  "ParametersToDelete": {
213030
213177
  "type": "list",
@@ -213184,15 +213331,15 @@ module.exports={
213184
213331
  }
213185
213332
  }
213186
213333
  },
213187
- "S1k": {
213334
+ "S1s": {
213188
213335
  "type": "structure",
213189
213336
  "members": {
213190
213337
  "Assets": {
213191
- "shape": "S1l"
213338
+ "shape": "S1t"
213192
213339
  }
213193
213340
  }
213194
213341
  },
213195
- "S1l": {
213342
+ "S1t": {
213196
213343
  "type": "list",
213197
213344
  "member": {
213198
213345
  "type": "structure",
@@ -213203,18 +213350,18 @@ module.exports={
213203
213350
  }
213204
213351
  }
213205
213352
  },
213206
- "S1n": {
213353
+ "S1v": {
213207
213354
  "type": "structure",
213208
213355
  "members": {
213209
213356
  "Assets": {
213210
- "shape": "S1l"
213357
+ "shape": "S1t"
213211
213358
  },
213212
213359
  "AutoCreate": {
213213
213360
  "type": "boolean"
213214
213361
  }
213215
213362
  }
213216
213363
  },
213217
- "S1q": {
213364
+ "S1y": {
213218
213365
  "type": "structure",
213219
213366
  "members": {
213220
213367
  "KinesisVideoStream": {
@@ -213225,7 +213372,7 @@ module.exports={
213225
213372
  }
213226
213373
  }
213227
213374
  },
213228
- "S1t": {
213375
+ "S21": {
213229
213376
  "type": "structure",
213230
213377
  "members": {
213231
213378
  "KinesisDataStream": {
@@ -213243,7 +213390,7 @@ module.exports={
213243
213390
  }
213244
213391
  }
213245
213392
  },
213246
- "S1y": {
213393
+ "S26": {
213247
213394
  "type": "structure",
213248
213395
  "members": {
213249
213396
  "FaceSearch": {
@@ -213262,7 +213409,7 @@ module.exports={
213262
213409
  ],
213263
213410
  "members": {
213264
213411
  "Labels": {
213265
- "shape": "S21"
213412
+ "shape": "S29"
213266
213413
  },
213267
213414
  "MinConfidence": {
213268
213415
  "type": "float"
@@ -213271,11 +213418,11 @@ module.exports={
213271
213418
  }
213272
213419
  }
213273
213420
  },
213274
- "S21": {
213421
+ "S29": {
213275
213422
  "type": "list",
213276
213423
  "member": {}
213277
213424
  },
213278
- "S24": {
213425
+ "S2c": {
213279
213426
  "type": "structure",
213280
213427
  "required": [
213281
213428
  "SNSTopicArn"
@@ -213284,7 +213431,7 @@ module.exports={
213284
213431
  "SNSTopicArn": {}
213285
213432
  }
213286
213433
  },
213287
- "S26": {
213434
+ "S2e": {
213288
213435
  "type": "list",
213289
213436
  "member": {
213290
213437
  "type": "structure",
@@ -213293,12 +213440,12 @@ module.exports={
213293
213440
  "shape": "Sc"
213294
213441
  },
213295
213442
  "Polygon": {
213296
- "shape": "S28"
213443
+ "shape": "S2g"
213297
213444
  }
213298
213445
  }
213299
213446
  }
213300
213447
  },
213301
- "S28": {
213448
+ "S2g": {
213302
213449
  "type": "list",
213303
213450
  "member": {
213304
213451
  "type": "structure",
@@ -213312,7 +213459,7 @@ module.exports={
213312
213459
  }
213313
213460
  }
213314
213461
  },
213315
- "S2a": {
213462
+ "S2i": {
213316
213463
  "type": "structure",
213317
213464
  "required": [
213318
213465
  "OptIn"
@@ -213323,34 +213470,34 @@ module.exports={
213323
213470
  }
213324
213471
  }
213325
213472
  },
213326
- "S2i": {
213473
+ "S2q": {
213327
213474
  "type": "list",
213328
213475
  "member": {}
213329
213476
  },
213330
- "S3h": {
213477
+ "S3p": {
213331
213478
  "type": "structure",
213332
213479
  "members": {
213333
213480
  "Assets": {
213334
- "shape": "S1l"
213481
+ "shape": "S1t"
213335
213482
  }
213336
213483
  }
213337
213484
  },
213338
- "S40": {
213485
+ "S48": {
213339
213486
  "type": "structure",
213340
213487
  "members": {
213341
213488
  "BoundingBox": {
213342
213489
  "shape": "Sc"
213343
213490
  },
213344
213491
  "Polygon": {
213345
- "shape": "S28"
213492
+ "shape": "S2g"
213346
213493
  }
213347
213494
  }
213348
213495
  },
213349
- "S42": {
213496
+ "S4a": {
213350
213497
  "type": "list",
213351
213498
  "member": {}
213352
213499
  },
213353
- "S46": {
213500
+ "S4e": {
213354
213501
  "type": "structure",
213355
213502
  "members": {
213356
213503
  "BoundingBox": {
@@ -213462,28 +213609,28 @@ module.exports={
213462
213609
  }
213463
213610
  }
213464
213611
  },
213465
- "S4k": {
213612
+ "S4s": {
213466
213613
  "type": "structure",
213467
213614
  "members": {
213468
213615
  "LabelInclusionFilters": {
213469
- "shape": "S4l"
213616
+ "shape": "S4t"
213470
213617
  },
213471
213618
  "LabelExclusionFilters": {
213472
- "shape": "S4l"
213619
+ "shape": "S4t"
213473
213620
  },
213474
213621
  "LabelCategoryInclusionFilters": {
213475
- "shape": "S4l"
213622
+ "shape": "S4t"
213476
213623
  },
213477
213624
  "LabelCategoryExclusionFilters": {
213478
- "shape": "S4l"
213625
+ "shape": "S4t"
213479
213626
  }
213480
213627
  }
213481
213628
  },
213482
- "S4l": {
213629
+ "S4t": {
213483
213630
  "type": "list",
213484
213631
  "member": {}
213485
213632
  },
213486
- "S4r": {
213633
+ "S4z": {
213487
213634
  "type": "structure",
213488
213635
  "members": {
213489
213636
  "Name": {},
@@ -213502,7 +213649,7 @@ module.exports={
213502
213649
  "type": "float"
213503
213650
  },
213504
213651
  "DominantColors": {
213505
- "shape": "S4u"
213652
+ "shape": "S52"
213506
213653
  }
213507
213654
  }
213508
213655
  }
@@ -213536,7 +213683,7 @@ module.exports={
213536
213683
  }
213537
213684
  }
213538
213685
  },
213539
- "S4u": {
213686
+ "S52": {
213540
213687
  "type": "list",
213541
213688
  "member": {
213542
213689
  "type": "structure",
@@ -213559,7 +213706,7 @@ module.exports={
213559
213706
  }
213560
213707
  }
213561
213708
  },
213562
- "S53": {
213709
+ "S5b": {
213563
213710
  "type": "structure",
213564
213711
  "members": {
213565
213712
  "Brightness": {
@@ -213573,7 +213720,7 @@ module.exports={
213573
213720
  }
213574
213721
  }
213575
213722
  },
213576
- "S5f": {
213723
+ "S5n": {
213577
213724
  "type": "structure",
213578
213725
  "members": {
213579
213726
  "Confidence": {
@@ -213583,13 +213730,13 @@ module.exports={
213583
213730
  "ParentName": {}
213584
213731
  }
213585
213732
  },
213586
- "S5z": {
213733
+ "S67": {
213587
213734
  "type": "list",
213588
213735
  "member": {
213589
213736
  "type": "integer"
213590
213737
  }
213591
213738
  },
213592
- "S62": {
213739
+ "S6a": {
213593
213740
  "type": "structure",
213594
213741
  "members": {
213595
213742
  "MinConfidence": {
@@ -213603,7 +213750,7 @@ module.exports={
213603
213750
  }
213604
213751
  }
213605
213752
  },
213606
- "S67": {
213753
+ "S6f": {
213607
213754
  "type": "structure",
213608
213755
  "members": {
213609
213756
  "DetectedText": {},
@@ -213618,21 +213765,21 @@ module.exports={
213618
213765
  "type": "float"
213619
213766
  },
213620
213767
  "Geometry": {
213621
- "shape": "S40"
213768
+ "shape": "S48"
213622
213769
  }
213623
213770
  }
213624
213771
  },
213625
- "S6g": {
213772
+ "S6o": {
213626
213773
  "type": "list",
213627
213774
  "member": {}
213628
213775
  },
213629
- "S6i": {
213776
+ "S6q": {
213630
213777
  "type": "structure",
213631
213778
  "members": {
213632
213779
  "Type": {}
213633
213780
  }
213634
213781
  },
213635
- "S6r": {
213782
+ "S6z": {
213636
213783
  "type": "structure",
213637
213784
  "members": {
213638
213785
  "Codec": {},
@@ -213652,7 +213799,22 @@ module.exports={
213652
213799
  "ColorRange": {}
213653
213800
  }
213654
213801
  },
213655
- "S7b": {
213802
+ "S7h": {
213803
+ "type": "structure",
213804
+ "members": {
213805
+ "Bytes": {
213806
+ "type": "blob",
213807
+ "sensitive": true
213808
+ },
213809
+ "S3Object": {
213810
+ "shape": "S4"
213811
+ },
213812
+ "BoundingBox": {
213813
+ "shape": "Sc"
213814
+ }
213815
+ }
213816
+ },
213817
+ "S7p": {
213656
213818
  "type": "structure",
213657
213819
  "members": {
213658
213820
  "Index": {
@@ -213662,11 +213824,11 @@ module.exports={
213662
213824
  "shape": "Sc"
213663
213825
  },
213664
213826
  "Face": {
213665
- "shape": "S46"
213827
+ "shape": "S4e"
213666
213828
  }
213667
213829
  }
213668
213830
  },
213669
- "S7d": {
213831
+ "S7r": {
213670
213832
  "type": "list",
213671
213833
  "member": {
213672
213834
  "type": "structure",
@@ -213675,12 +213837,12 @@ module.exports={
213675
213837
  "type": "float"
213676
213838
  },
213677
213839
  "Face": {
213678
- "shape": "S7f"
213840
+ "shape": "S7t"
213679
213841
  }
213680
213842
  }
213681
213843
  }
213682
213844
  },
213683
- "S7f": {
213845
+ "S7t": {
213684
213846
  "type": "structure",
213685
213847
  "members": {
213686
213848
  "FaceId": {},
@@ -213695,7 +213857,7 @@ module.exports={
213695
213857
  "IndexFacesModelVersion": {}
213696
213858
  }
213697
213859
  },
213698
- "Sa0": {
213860
+ "Sae": {
213699
213861
  "type": "structure",
213700
213862
  "members": {
213701
213863
  "S3Object": {
@@ -213703,7 +213865,7 @@ module.exports={
213703
213865
  }
213704
213866
  }
213705
213867
  },
213706
- "Sa2": {
213868
+ "Saf": {
213707
213869
  "type": "structure",
213708
213870
  "required": [
213709
213871
  "SNSTopicArn",
@@ -254966,7 +255128,7 @@ AWS.util.update(AWS, {
254966
255128
  /**
254967
255129
  * @constant
254968
255130
  */
254969
- VERSION: '2.1353.0',
255131
+ VERSION: '2.1354.0',
254970
255132
 
254971
255133
  /**
254972
255134
  * @api private
@@ -277083,7 +277245,7 @@ var LRUCache = /** @class */ (function () {
277083
277245
  }());
277084
277246
  exports.LRUCache = LRUCache;
277085
277247
  },{}],462:[function(require,module,exports){
277086
- // AWS SDK for JavaScript v2.1353.0
277248
+ // AWS SDK for JavaScript v2.1354.0
277087
277249
  // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
277088
277250
  // License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
277089
277251
  require('./browser_loader');