cdk-comprehend-s3olap 2.0.121 → 2.0.123

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 (89) 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 +25 -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/ecr-public-2020-10-30.min.json +8 -8
  11. package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +3 -0
  12. package/node_modules/aws-sdk/apis/eventbridge-2015-10-07.min.json +18 -6
  13. package/node_modules/aws-sdk/apis/iot-data-2015-05-28.min.json +3 -0
  14. package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +82 -15
  15. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +56 -32
  16. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +224 -138
  17. package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +55 -28
  18. package/node_modules/aws-sdk/clients/connect.d.ts +15 -4
  19. package/node_modules/aws-sdk/clients/ecrpublic.d.ts +2 -2
  20. package/node_modules/aws-sdk/clients/ecs.d.ts +24 -24
  21. package/node_modules/aws-sdk/clients/emrserverless.d.ts +7 -3
  22. package/node_modules/aws-sdk/clients/eventbridge.d.ts +3 -1
  23. package/node_modules/aws-sdk/clients/iotdata.d.ts +5 -0
  24. package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +67 -7
  25. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +20 -1
  26. package/node_modules/aws-sdk/clients/omics.d.ts +2 -2
  27. package/node_modules/aws-sdk/clients/rekognition.d.ts +114 -16
  28. package/node_modules/aws-sdk/clients/wafv2.d.ts +89 -62
  29. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  30. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +2537 -880
  31. package/node_modules/aws-sdk/dist/aws-sdk.js +508 -343
  32. package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
  33. package/node_modules/aws-sdk/dist/xml2js.js +2579 -922
  34. package/node_modules/aws-sdk/lib/core.js +1 -1
  35. package/node_modules/aws-sdk/package.json +2 -2
  36. package/node_modules/esbuild/bin/esbuild +1 -1
  37. package/node_modules/esbuild/lib/main.js +8 -8
  38. package/node_modules/esbuild/package.json +23 -23
  39. package/node_modules/xml2js/README.md +108 -7
  40. package/node_modules/xml2js/lib/parser.js +35 -7
  41. package/node_modules/xml2js/lib/xml2js.js +2 -0
  42. package/node_modules/xml2js/node_modules/xmlbuilder/CHANGELOG.md +47 -0
  43. package/node_modules/xml2js/node_modules/xmlbuilder/LICENSE +21 -21
  44. package/node_modules/xml2js/node_modules/xmlbuilder/README.md +86 -85
  45. package/node_modules/xml2js/node_modules/xmlbuilder/appveyor.yml +20 -0
  46. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Derivation.js +10 -0
  47. package/node_modules/xml2js/node_modules/xmlbuilder/lib/DocumentPosition.js +12 -0
  48. package/node_modules/xml2js/node_modules/xmlbuilder/lib/NodeType.js +23 -0
  49. package/node_modules/xml2js/node_modules/xmlbuilder/lib/OperationType.js +11 -0
  50. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Utility.js +11 -1
  51. package/node_modules/xml2js/node_modules/xmlbuilder/lib/WriterState.js +10 -0
  52. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLAttribute.js +86 -9
  53. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCData.js +10 -6
  54. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCharacterData.js +79 -0
  55. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLComment.js +10 -6
  56. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js +64 -0
  57. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js +16 -0
  58. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMImplementation.js +32 -0
  59. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMStringList.js +28 -0
  60. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDAttList.js +16 -11
  61. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDElement.js +7 -4
  62. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDEntity.js +49 -8
  63. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDNotation.js +20 -5
  64. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDeclaration.js +5 -2
  65. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocType.js +84 -5
  66. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocument.js +199 -5
  67. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentCB.js +165 -39
  68. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentFragment.js +24 -0
  69. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDummy.js +31 -0
  70. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLElement.js +207 -20
  71. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js +58 -0
  72. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNode.js +403 -50
  73. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeFilter.js +48 -0
  74. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeList.js +28 -0
  75. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js +19 -5
  76. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLRaw.js +6 -3
  77. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStreamWriter.js +94 -197
  78. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringWriter.js +6 -305
  79. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringifier.js +109 -32
  80. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLText.js +43 -6
  81. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLTypeInfo.js +21 -0
  82. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLUserDataHandler.js +16 -0
  83. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLWriterBase.js +397 -59
  84. package/node_modules/xml2js/node_modules/xmlbuilder/lib/index.js +15 -3
  85. package/node_modules/xml2js/node_modules/xmlbuilder/package.json +5 -3
  86. package/node_modules/xml2js/node_modules/xmlbuilder/typings/index.d.ts +153 -0
  87. package/node_modules/xml2js/package.json +11 -5
  88. package/package.json +4 -4
  89. 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.1356.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"
@@ -160927,6 +160936,9 @@ module.exports={
160927
160936
  },
160928
160937
  "lastModifiedTime": {
160929
160938
  "type": "long"
160939
+ },
160940
+ "userProperties": {
160941
+ "type": "blob"
160930
160942
  }
160931
160943
  }
160932
160944
  }
@@ -179119,6 +179131,28 @@ module.exports={
179119
179131
  }
179120
179132
  }
179121
179133
  },
179134
+ "DeleteResourcePolicy": {
179135
+ "http": {
179136
+ "method": "DELETE",
179137
+ "requestUri": "/DeleteResourcePolicy"
179138
+ },
179139
+ "input": {
179140
+ "type": "structure",
179141
+ "required": [
179142
+ "ResourceArn"
179143
+ ],
179144
+ "members": {
179145
+ "ResourceArn": {
179146
+ "location": "querystring",
179147
+ "locationName": "resourceArn"
179148
+ }
179149
+ }
179150
+ },
179151
+ "output": {
179152
+ "type": "structure",
179153
+ "members": {}
179154
+ }
179155
+ },
179122
179156
  "DescribeChangeSet": {
179123
179157
  "http": {
179124
179158
  "method": "GET",
@@ -179159,7 +179193,7 @@ module.exports={
179159
179193
  "members": {
179160
179194
  "ChangeType": {},
179161
179195
  "Entity": {
179162
- "shape": "Sg"
179196
+ "shape": "Sj"
179163
179197
  },
179164
179198
  "Details": {},
179165
179199
  "ErrorDetailList": {
@@ -179212,6 +179246,30 @@ module.exports={
179212
179246
  }
179213
179247
  }
179214
179248
  },
179249
+ "GetResourcePolicy": {
179250
+ "http": {
179251
+ "method": "GET",
179252
+ "requestUri": "/GetResourcePolicy"
179253
+ },
179254
+ "input": {
179255
+ "type": "structure",
179256
+ "required": [
179257
+ "ResourceArn"
179258
+ ],
179259
+ "members": {
179260
+ "ResourceArn": {
179261
+ "location": "querystring",
179262
+ "locationName": "resourceArn"
179263
+ }
179264
+ }
179265
+ },
179266
+ "output": {
179267
+ "type": "structure",
179268
+ "members": {
179269
+ "Policy": {}
179270
+ }
179271
+ }
179272
+ },
179215
179273
  "ListChangeSets": {
179216
179274
  "http": {
179217
179275
  "requestUri": "/ListChangeSets"
@@ -179224,10 +179282,10 @@ module.exports={
179224
179282
  "members": {
179225
179283
  "Catalog": {},
179226
179284
  "FilterList": {
179227
- "shape": "Sr"
179285
+ "shape": "Sx"
179228
179286
  },
179229
179287
  "Sort": {
179230
- "shape": "Sw"
179288
+ "shape": "S12"
179231
179289
  },
179232
179290
  "MaxResults": {
179233
179291
  "type": "integer"
@@ -179275,15 +179333,16 @@ module.exports={
179275
179333
  "Catalog": {},
179276
179334
  "EntityType": {},
179277
179335
  "FilterList": {
179278
- "shape": "Sr"
179336
+ "shape": "Sx"
179279
179337
  },
179280
179338
  "Sort": {
179281
- "shape": "Sw"
179339
+ "shape": "S12"
179282
179340
  },
179283
179341
  "NextToken": {},
179284
179342
  "MaxResults": {
179285
179343
  "type": "integer"
179286
- }
179344
+ },
179345
+ "OwnershipType": {}
179287
179346
  }
179288
179347
  },
179289
179348
  "output": {
@@ -179325,11 +179384,31 @@ module.exports={
179325
179384
  "members": {
179326
179385
  "ResourceArn": {},
179327
179386
  "Tags": {
179328
- "shape": "S1e"
179387
+ "shape": "S1l"
179329
179388
  }
179330
179389
  }
179331
179390
  }
179332
179391
  },
179392
+ "PutResourcePolicy": {
179393
+ "http": {
179394
+ "requestUri": "/PutResourcePolicy"
179395
+ },
179396
+ "input": {
179397
+ "type": "structure",
179398
+ "required": [
179399
+ "ResourceArn",
179400
+ "Policy"
179401
+ ],
179402
+ "members": {
179403
+ "ResourceArn": {},
179404
+ "Policy": {}
179405
+ }
179406
+ },
179407
+ "output": {
179408
+ "type": "structure",
179409
+ "members": {}
179410
+ }
179411
+ },
179333
179412
  "StartChangeSet": {
179334
179413
  "http": {
179335
179414
  "requestUri": "/StartChangeSet"
@@ -179354,10 +179433,10 @@ module.exports={
179354
179433
  "members": {
179355
179434
  "ChangeType": {},
179356
179435
  "Entity": {
179357
- "shape": "Sg"
179436
+ "shape": "Sj"
179358
179437
  },
179359
179438
  "EntityTags": {
179360
- "shape": "S1e"
179439
+ "shape": "S1l"
179361
179440
  },
179362
179441
  "Details": {},
179363
179442
  "ChangeName": {}
@@ -179369,7 +179448,7 @@ module.exports={
179369
179448
  "idempotencyToken": true
179370
179449
  },
179371
179450
  "ChangeSetTags": {
179372
- "shape": "S1e"
179451
+ "shape": "S1l"
179373
179452
  }
179374
179453
  }
179375
179454
  },
@@ -179394,7 +179473,7 @@ module.exports={
179394
179473
  "members": {
179395
179474
  "ResourceArn": {},
179396
179475
  "Tags": {
179397
- "shape": "S1e"
179476
+ "shape": "S1l"
179398
179477
  }
179399
179478
  }
179400
179479
  },
@@ -179428,7 +179507,7 @@ module.exports={
179428
179507
  }
179429
179508
  },
179430
179509
  "shapes": {
179431
- "Sg": {
179510
+ "Sj": {
179432
179511
  "type": "structure",
179433
179512
  "required": [
179434
179513
  "Type"
@@ -179438,7 +179517,7 @@ module.exports={
179438
179517
  "Identifier": {}
179439
179518
  }
179440
179519
  },
179441
- "Sr": {
179520
+ "Sx": {
179442
179521
  "type": "list",
179443
179522
  "member": {
179444
179523
  "type": "structure",
@@ -179451,14 +179530,14 @@ module.exports={
179451
179530
  }
179452
179531
  }
179453
179532
  },
179454
- "Sw": {
179533
+ "S12": {
179455
179534
  "type": "structure",
179456
179535
  "members": {
179457
179536
  "SortBy": {},
179458
179537
  "SortOrder": {}
179459
179538
  }
179460
179539
  },
179461
- "S1e": {
179540
+ "S1l": {
179462
179541
  "type": "list",
179463
179542
  "member": {
179464
179543
  "type": "structure",
@@ -210835,6 +210914,43 @@ module.exports={
210835
210914
  }
210836
210915
  }
210837
210916
  },
210917
+ "CreateFaceLivenessSession": {
210918
+ "input": {
210919
+ "type": "structure",
210920
+ "members": {
210921
+ "KmsKeyId": {},
210922
+ "Settings": {
210923
+ "type": "structure",
210924
+ "members": {
210925
+ "OutputConfig": {
210926
+ "type": "structure",
210927
+ "required": [
210928
+ "S3Bucket"
210929
+ ],
210930
+ "members": {
210931
+ "S3Bucket": {},
210932
+ "S3KeyPrefix": {}
210933
+ }
210934
+ },
210935
+ "AuditImagesLimit": {
210936
+ "type": "integer"
210937
+ }
210938
+ }
210939
+ },
210940
+ "ClientRequestToken": {}
210941
+ }
210942
+ },
210943
+ "output": {
210944
+ "type": "structure",
210945
+ "required": [
210946
+ "SessionId"
210947
+ ],
210948
+ "members": {
210949
+ "SessionId": {}
210950
+ }
210951
+ },
210952
+ "idempotent": true
210953
+ },
210838
210954
  "CreateProject": {
210839
210955
  "input": {
210840
210956
  "type": "structure",
@@ -210867,10 +210983,10 @@ module.exports={
210867
210983
  "shape": "Sy"
210868
210984
  },
210869
210985
  "TrainingData": {
210870
- "shape": "S1k"
210986
+ "shape": "S1s"
210871
210987
  },
210872
210988
  "TestingData": {
210873
- "shape": "S1n"
210989
+ "shape": "S1v"
210874
210990
  },
210875
210991
  "Tags": {
210876
210992
  "shape": "S10"
@@ -210897,28 +211013,28 @@ module.exports={
210897
211013
  ],
210898
211014
  "members": {
210899
211015
  "Input": {
210900
- "shape": "S1q"
211016
+ "shape": "S1y"
210901
211017
  },
210902
211018
  "Output": {
210903
- "shape": "S1t"
211019
+ "shape": "S21"
210904
211020
  },
210905
211021
  "Name": {},
210906
211022
  "Settings": {
210907
- "shape": "S1y"
211023
+ "shape": "S26"
210908
211024
  },
210909
211025
  "RoleArn": {},
210910
211026
  "Tags": {
210911
211027
  "shape": "S10"
210912
211028
  },
210913
211029
  "NotificationChannel": {
210914
- "shape": "S24"
211030
+ "shape": "S2c"
210915
211031
  },
210916
211032
  "KmsKeyId": {},
210917
211033
  "RegionsOfInterest": {
210918
- "shape": "S26"
211034
+ "shape": "S2e"
210919
211035
  },
210920
211036
  "DataSharingPreference": {
210921
- "shape": "S2a"
211037
+ "shape": "S2i"
210922
211038
  }
210923
211039
  }
210924
211040
  },
@@ -210973,7 +211089,7 @@ module.exports={
210973
211089
  "members": {
210974
211090
  "CollectionId": {},
210975
211091
  "FaceIds": {
210976
- "shape": "S2i"
211092
+ "shape": "S2q"
210977
211093
  }
210978
211094
  }
210979
211095
  },
@@ -210981,7 +211097,7 @@ module.exports={
210981
211097
  "type": "structure",
210982
211098
  "members": {
210983
211099
  "DeletedFaces": {
210984
- "shape": "S2i"
211100
+ "shape": "S2q"
210985
211101
  }
210986
211102
  }
210987
211103
  }
@@ -211172,13 +211288,13 @@ module.exports={
211172
211288
  "type": "structure",
211173
211289
  "members": {
211174
211290
  "Input": {
211175
- "shape": "S1k"
211291
+ "shape": "S1s"
211176
211292
  },
211177
211293
  "Output": {
211178
- "shape": "S1k"
211294
+ "shape": "S1s"
211179
211295
  },
211180
211296
  "Validation": {
211181
- "shape": "S3h"
211297
+ "shape": "S3p"
211182
211298
  }
211183
211299
  }
211184
211300
  },
@@ -211186,13 +211302,13 @@ module.exports={
211186
211302
  "type": "structure",
211187
211303
  "members": {
211188
211304
  "Input": {
211189
- "shape": "S1n"
211305
+ "shape": "S1v"
211190
211306
  },
211191
211307
  "Output": {
211192
- "shape": "S1n"
211308
+ "shape": "S1v"
211193
211309
  },
211194
211310
  "Validation": {
211195
- "shape": "S3h"
211311
+ "shape": "S3p"
211196
211312
  }
211197
211313
  }
211198
211314
  },
@@ -211301,24 +211417,24 @@ module.exports={
211301
211417
  "type": "timestamp"
211302
211418
  },
211303
211419
  "Input": {
211304
- "shape": "S1q"
211420
+ "shape": "S1y"
211305
211421
  },
211306
211422
  "Output": {
211307
- "shape": "S1t"
211423
+ "shape": "S21"
211308
211424
  },
211309
211425
  "RoleArn": {},
211310
211426
  "Settings": {
211311
- "shape": "S1y"
211427
+ "shape": "S26"
211312
211428
  },
211313
211429
  "NotificationChannel": {
211314
- "shape": "S24"
211430
+ "shape": "S2c"
211315
211431
  },
211316
211432
  "KmsKeyId": {},
211317
211433
  "RegionsOfInterest": {
211318
- "shape": "S26"
211434
+ "shape": "S2e"
211319
211435
  },
211320
211436
  "DataSharingPreference": {
211321
- "shape": "S2a"
211437
+ "shape": "S2i"
211322
211438
  }
211323
211439
  }
211324
211440
  }
@@ -211356,7 +211472,7 @@ module.exports={
211356
211472
  "type": "float"
211357
211473
  },
211358
211474
  "Geometry": {
211359
- "shape": "S40"
211475
+ "shape": "S48"
211360
211476
  }
211361
211477
  }
211362
211478
  }
@@ -211375,7 +211491,7 @@ module.exports={
211375
211491
  "shape": "S2"
211376
211492
  },
211377
211493
  "Attributes": {
211378
- "shape": "S42"
211494
+ "shape": "S4a"
211379
211495
  }
211380
211496
  }
211381
211497
  },
@@ -211385,7 +211501,7 @@ module.exports={
211385
211501
  "FaceDetails": {
211386
211502
  "type": "list",
211387
211503
  "member": {
211388
- "shape": "S46"
211504
+ "shape": "S4e"
211389
211505
  }
211390
211506
  },
211391
211507
  "OrientationCorrection": {}
@@ -211416,7 +211532,7 @@ module.exports={
211416
211532
  "type": "structure",
211417
211533
  "members": {
211418
211534
  "GeneralLabels": {
211419
- "shape": "S4k"
211535
+ "shape": "S4s"
211420
211536
  },
211421
211537
  "ImageProperties": {
211422
211538
  "type": "structure",
@@ -211436,7 +211552,7 @@ module.exports={
211436
211552
  "Labels": {
211437
211553
  "type": "list",
211438
211554
  "member": {
211439
- "shape": "S4r"
211555
+ "shape": "S4z"
211440
211556
  }
211441
211557
  },
211442
211558
  "OrientationCorrection": {},
@@ -211445,19 +211561,19 @@ module.exports={
211445
211561
  "type": "structure",
211446
211562
  "members": {
211447
211563
  "Quality": {
211448
- "shape": "S53"
211564
+ "shape": "S5b"
211449
211565
  },
211450
211566
  "DominantColors": {
211451
- "shape": "S4u"
211567
+ "shape": "S52"
211452
211568
  },
211453
211569
  "Foreground": {
211454
211570
  "type": "structure",
211455
211571
  "members": {
211456
211572
  "Quality": {
211457
- "shape": "S53"
211573
+ "shape": "S5b"
211458
211574
  },
211459
211575
  "DominantColors": {
211460
- "shape": "S4u"
211576
+ "shape": "S52"
211461
211577
  }
211462
211578
  }
211463
211579
  },
@@ -211465,10 +211581,10 @@ module.exports={
211465
211581
  "type": "structure",
211466
211582
  "members": {
211467
211583
  "Quality": {
211468
- "shape": "S53"
211584
+ "shape": "S5b"
211469
211585
  },
211470
211586
  "DominantColors": {
211471
- "shape": "S4u"
211587
+ "shape": "S52"
211472
211588
  }
211473
211589
  }
211474
211590
  }
@@ -211518,7 +211634,7 @@ module.exports={
211518
211634
  "ModerationLabels": {
211519
211635
  "type": "list",
211520
211636
  "member": {
211521
- "shape": "S5f"
211637
+ "shape": "S5n"
211522
211638
  }
211523
211639
  },
211524
211640
  "ModerationModelVersion": {},
@@ -211629,13 +211745,13 @@ module.exports={
211629
211745
  "type": "structure",
211630
211746
  "members": {
211631
211747
  "PersonsWithRequiredEquipment": {
211632
- "shape": "S5z"
211748
+ "shape": "S67"
211633
211749
  },
211634
211750
  "PersonsWithoutRequiredEquipment": {
211635
- "shape": "S5z"
211751
+ "shape": "S67"
211636
211752
  },
211637
211753
  "PersonsIndeterminate": {
211638
- "shape": "S5z"
211754
+ "shape": "S67"
211639
211755
  }
211640
211756
  }
211641
211757
  }
@@ -211656,10 +211772,10 @@ module.exports={
211656
211772
  "type": "structure",
211657
211773
  "members": {
211658
211774
  "WordFilter": {
211659
- "shape": "S62"
211775
+ "shape": "S6a"
211660
211776
  },
211661
211777
  "RegionsOfInterest": {
211662
- "shape": "S26"
211778
+ "shape": "S2e"
211663
211779
  }
211664
211780
  }
211665
211781
  }
@@ -211671,7 +211787,7 @@ module.exports={
211671
211787
  "TextDetections": {
211672
211788
  "type": "list",
211673
211789
  "member": {
211674
- "shape": "S67"
211790
+ "shape": "S6f"
211675
211791
  }
211676
211792
  },
211677
211793
  "TextModelVersion": {}
@@ -211718,11 +211834,11 @@ module.exports={
211718
211834
  "type": "structure",
211719
211835
  "members": {
211720
211836
  "Urls": {
211721
- "shape": "S6g"
211837
+ "shape": "S6o"
211722
211838
  },
211723
211839
  "Name": {},
211724
211840
  "KnownGender": {
211725
- "shape": "S6i"
211841
+ "shape": "S6q"
211726
211842
  }
211727
211843
  }
211728
211844
  }
@@ -211748,7 +211864,7 @@ module.exports={
211748
211864
  "JobStatus": {},
211749
211865
  "StatusMessage": {},
211750
211866
  "VideoMetadata": {
211751
- "shape": "S6r"
211867
+ "shape": "S6z"
211752
211868
  },
211753
211869
  "NextToken": {},
211754
211870
  "Celebrities": {
@@ -211763,7 +211879,7 @@ module.exports={
211763
211879
  "type": "structure",
211764
211880
  "members": {
211765
211881
  "Urls": {
211766
- "shape": "S6g"
211882
+ "shape": "S6o"
211767
211883
  },
211768
211884
  "Name": {},
211769
211885
  "Id": {},
@@ -211774,10 +211890,10 @@ module.exports={
211774
211890
  "shape": "Sc"
211775
211891
  },
211776
211892
  "Face": {
211777
- "shape": "S46"
211893
+ "shape": "S4e"
211778
211894
  },
211779
211895
  "KnownGender": {
211780
- "shape": "S6i"
211896
+ "shape": "S6q"
211781
211897
  }
211782
211898
  }
211783
211899
  }
@@ -211808,7 +211924,7 @@ module.exports={
211808
211924
  "JobStatus": {},
211809
211925
  "StatusMessage": {},
211810
211926
  "VideoMetadata": {
211811
- "shape": "S6r"
211927
+ "shape": "S6z"
211812
211928
  },
211813
211929
  "ModerationLabels": {
211814
211930
  "type": "list",
@@ -211819,7 +211935,7 @@ module.exports={
211819
211935
  "type": "long"
211820
211936
  },
211821
211937
  "ModerationLabel": {
211822
- "shape": "S5f"
211938
+ "shape": "S5n"
211823
211939
  }
211824
211940
  }
211825
211941
  }
@@ -211849,7 +211965,7 @@ module.exports={
211849
211965
  "JobStatus": {},
211850
211966
  "StatusMessage": {},
211851
211967
  "VideoMetadata": {
211852
- "shape": "S6r"
211968
+ "shape": "S6z"
211853
211969
  },
211854
211970
  "NextToken": {},
211855
211971
  "Faces": {
@@ -211861,7 +211977,7 @@ module.exports={
211861
211977
  "type": "long"
211862
211978
  },
211863
211979
  "Face": {
211864
- "shape": "S46"
211980
+ "shape": "S4e"
211865
211981
  }
211866
211982
  }
211867
211983
  }
@@ -211869,6 +211985,40 @@ module.exports={
211869
211985
  }
211870
211986
  }
211871
211987
  },
211988
+ "GetFaceLivenessSessionResults": {
211989
+ "input": {
211990
+ "type": "structure",
211991
+ "required": [
211992
+ "SessionId"
211993
+ ],
211994
+ "members": {
211995
+ "SessionId": {}
211996
+ }
211997
+ },
211998
+ "output": {
211999
+ "type": "structure",
212000
+ "required": [
212001
+ "SessionId",
212002
+ "Status"
212003
+ ],
212004
+ "members": {
212005
+ "SessionId": {},
212006
+ "Status": {},
212007
+ "Confidence": {
212008
+ "type": "float"
212009
+ },
212010
+ "ReferenceImage": {
212011
+ "shape": "S7h"
212012
+ },
212013
+ "AuditImages": {
212014
+ "type": "list",
212015
+ "member": {
212016
+ "shape": "S7h"
212017
+ }
212018
+ }
212019
+ }
212020
+ }
212021
+ },
211872
212022
  "GetFaceSearch": {
211873
212023
  "input": {
211874
212024
  "type": "structure",
@@ -211891,7 +212041,7 @@ module.exports={
211891
212041
  "StatusMessage": {},
211892
212042
  "NextToken": {},
211893
212043
  "VideoMetadata": {
211894
- "shape": "S6r"
212044
+ "shape": "S6z"
211895
212045
  },
211896
212046
  "Persons": {
211897
212047
  "type": "list",
@@ -211902,10 +212052,10 @@ module.exports={
211902
212052
  "type": "long"
211903
212053
  },
211904
212054
  "Person": {
211905
- "shape": "S7b"
212055
+ "shape": "S7p"
211906
212056
  },
211907
212057
  "FaceMatches": {
211908
- "shape": "S7d"
212058
+ "shape": "S7r"
211909
212059
  }
211910
212060
  }
211911
212061
  }
@@ -211935,7 +212085,7 @@ module.exports={
211935
212085
  "JobStatus": {},
211936
212086
  "StatusMessage": {},
211937
212087
  "VideoMetadata": {
211938
- "shape": "S6r"
212088
+ "shape": "S6z"
211939
212089
  },
211940
212090
  "NextToken": {},
211941
212091
  "Labels": {
@@ -211947,7 +212097,7 @@ module.exports={
211947
212097
  "type": "long"
211948
212098
  },
211949
212099
  "Label": {
211950
- "shape": "S4r"
212100
+ "shape": "S4z"
211951
212101
  },
211952
212102
  "StartTimestampMillis": {
211953
212103
  "type": "long"
@@ -211986,7 +212136,7 @@ module.exports={
211986
212136
  "JobStatus": {},
211987
212137
  "StatusMessage": {},
211988
212138
  "VideoMetadata": {
211989
- "shape": "S6r"
212139
+ "shape": "S6z"
211990
212140
  },
211991
212141
  "NextToken": {},
211992
212142
  "Persons": {
@@ -211998,7 +212148,7 @@ module.exports={
211998
212148
  "type": "long"
211999
212149
  },
212000
212150
  "Person": {
212001
- "shape": "S7b"
212151
+ "shape": "S7p"
212002
212152
  }
212003
212153
  }
212004
212154
  }
@@ -212028,7 +212178,7 @@ module.exports={
212028
212178
  "VideoMetadata": {
212029
212179
  "type": "list",
212030
212180
  "member": {
212031
- "shape": "S6r"
212181
+ "shape": "S6z"
212032
212182
  }
212033
212183
  },
212034
212184
  "AudioMetadata": {
@@ -212133,7 +212283,7 @@ module.exports={
212133
212283
  "JobStatus": {},
212134
212284
  "StatusMessage": {},
212135
212285
  "VideoMetadata": {
212136
- "shape": "S6r"
212286
+ "shape": "S6z"
212137
212287
  },
212138
212288
  "TextDetections": {
212139
212289
  "type": "list",
@@ -212144,7 +212294,7 @@ module.exports={
212144
212294
  "type": "long"
212145
212295
  },
212146
212296
  "TextDetection": {
212147
- "shape": "S67"
212297
+ "shape": "S6f"
212148
212298
  }
212149
212299
  }
212150
212300
  }
@@ -212168,7 +212318,7 @@ module.exports={
212168
212318
  },
212169
212319
  "ExternalImageId": {},
212170
212320
  "DetectionAttributes": {
212171
- "shape": "S42"
212321
+ "shape": "S4a"
212172
212322
  },
212173
212323
  "MaxFaces": {
212174
212324
  "type": "integer"
@@ -212185,10 +212335,10 @@ module.exports={
212185
212335
  "type": "structure",
212186
212336
  "members": {
212187
212337
  "Face": {
212188
- "shape": "S7f"
212338
+ "shape": "S7t"
212189
212339
  },
212190
212340
  "FaceDetail": {
212191
- "shape": "S46"
212341
+ "shape": "S4e"
212192
212342
  }
212193
212343
  }
212194
212344
  }
@@ -212205,7 +212355,7 @@ module.exports={
212205
212355
  "member": {}
212206
212356
  },
212207
212357
  "FaceDetail": {
212208
- "shape": "S46"
212358
+ "shape": "S4e"
212209
212359
  }
212210
212360
  }
212211
212361
  }
@@ -212335,7 +212485,7 @@ module.exports={
212335
212485
  "Faces": {
212336
212486
  "type": "list",
212337
212487
  "member": {
212338
- "shape": "S7f"
212488
+ "shape": "S7t"
212339
212489
  }
212340
212490
  },
212341
212491
  "NextToken": {},
@@ -212471,7 +212621,7 @@ module.exports={
212471
212621
  "type": "structure",
212472
212622
  "members": {
212473
212623
  "Urls": {
212474
- "shape": "S6g"
212624
+ "shape": "S6o"
212475
212625
  },
212476
212626
  "Name": {},
212477
212627
  "Id": {},
@@ -212482,7 +212632,7 @@ module.exports={
212482
212632
  "type": "float"
212483
212633
  },
212484
212634
  "KnownGender": {
212485
- "shape": "S6i"
212635
+ "shape": "S6q"
212486
212636
  }
212487
212637
  }
212488
212638
  }
@@ -212520,7 +212670,7 @@ module.exports={
212520
212670
  "members": {
212521
212671
  "SearchedFaceId": {},
212522
212672
  "FaceMatches": {
212523
- "shape": "S7d"
212673
+ "shape": "S7r"
212524
212674
  },
212525
212675
  "FaceModelVersion": {}
212526
212676
  }
@@ -212557,7 +212707,7 @@ module.exports={
212557
212707
  "type": "float"
212558
212708
  },
212559
212709
  "FaceMatches": {
212560
- "shape": "S7d"
212710
+ "shape": "S7r"
212561
212711
  },
212562
212712
  "FaceModelVersion": {}
212563
212713
  }
@@ -212571,11 +212721,11 @@ module.exports={
212571
212721
  ],
212572
212722
  "members": {
212573
212723
  "Video": {
212574
- "shape": "Sa0"
212724
+ "shape": "Sae"
212575
212725
  },
212576
212726
  "ClientRequestToken": {},
212577
212727
  "NotificationChannel": {
212578
- "shape": "Sa2"
212728
+ "shape": "Saf"
212579
212729
  },
212580
212730
  "JobTag": {}
212581
212731
  }
@@ -212596,14 +212746,14 @@ module.exports={
212596
212746
  ],
212597
212747
  "members": {
212598
212748
  "Video": {
212599
- "shape": "Sa0"
212749
+ "shape": "Sae"
212600
212750
  },
212601
212751
  "MinConfidence": {
212602
212752
  "type": "float"
212603
212753
  },
212604
212754
  "ClientRequestToken": {},
212605
212755
  "NotificationChannel": {
212606
- "shape": "Sa2"
212756
+ "shape": "Saf"
212607
212757
  },
212608
212758
  "JobTag": {}
212609
212759
  }
@@ -212624,11 +212774,11 @@ module.exports={
212624
212774
  ],
212625
212775
  "members": {
212626
212776
  "Video": {
212627
- "shape": "Sa0"
212777
+ "shape": "Sae"
212628
212778
  },
212629
212779
  "ClientRequestToken": {},
212630
212780
  "NotificationChannel": {
212631
- "shape": "Sa2"
212781
+ "shape": "Saf"
212632
212782
  },
212633
212783
  "FaceAttributes": {},
212634
212784
  "JobTag": {}
@@ -212651,7 +212801,7 @@ module.exports={
212651
212801
  ],
212652
212802
  "members": {
212653
212803
  "Video": {
212654
- "shape": "Sa0"
212804
+ "shape": "Sae"
212655
212805
  },
212656
212806
  "ClientRequestToken": {},
212657
212807
  "FaceMatchThreshold": {
@@ -212659,7 +212809,7 @@ module.exports={
212659
212809
  },
212660
212810
  "CollectionId": {},
212661
212811
  "NotificationChannel": {
212662
- "shape": "Sa2"
212812
+ "shape": "Saf"
212663
212813
  },
212664
212814
  "JobTag": {}
212665
212815
  }
@@ -212680,14 +212830,14 @@ module.exports={
212680
212830
  ],
212681
212831
  "members": {
212682
212832
  "Video": {
212683
- "shape": "Sa0"
212833
+ "shape": "Sae"
212684
212834
  },
212685
212835
  "ClientRequestToken": {},
212686
212836
  "MinConfidence": {
212687
212837
  "type": "float"
212688
212838
  },
212689
212839
  "NotificationChannel": {
212690
- "shape": "Sa2"
212840
+ "shape": "Saf"
212691
212841
  },
212692
212842
  "JobTag": {},
212693
212843
  "Features": {
@@ -212698,7 +212848,7 @@ module.exports={
212698
212848
  "type": "structure",
212699
212849
  "members": {
212700
212850
  "GeneralLabels": {
212701
- "shape": "S4k"
212851
+ "shape": "S4s"
212702
212852
  }
212703
212853
  }
212704
212854
  }
@@ -212720,11 +212870,11 @@ module.exports={
212720
212870
  ],
212721
212871
  "members": {
212722
212872
  "Video": {
212723
- "shape": "Sa0"
212873
+ "shape": "Sae"
212724
212874
  },
212725
212875
  "ClientRequestToken": {},
212726
212876
  "NotificationChannel": {
212727
- "shape": "Sa2"
212877
+ "shape": "Saf"
212728
212878
  },
212729
212879
  "JobTag": {}
212730
212880
  }
@@ -212770,11 +212920,11 @@ module.exports={
212770
212920
  ],
212771
212921
  "members": {
212772
212922
  "Video": {
212773
- "shape": "Sa0"
212923
+ "shape": "Sae"
212774
212924
  },
212775
212925
  "ClientRequestToken": {},
212776
212926
  "NotificationChannel": {
212777
- "shape": "Sa2"
212927
+ "shape": "Saf"
212778
212928
  },
212779
212929
  "JobTag": {},
212780
212930
  "Filters": {
@@ -212870,21 +213020,21 @@ module.exports={
212870
213020
  ],
212871
213021
  "members": {
212872
213022
  "Video": {
212873
- "shape": "Sa0"
213023
+ "shape": "Sae"
212874
213024
  },
212875
213025
  "ClientRequestToken": {},
212876
213026
  "NotificationChannel": {
212877
- "shape": "Sa2"
213027
+ "shape": "Saf"
212878
213028
  },
212879
213029
  "JobTag": {},
212880
213030
  "Filters": {
212881
213031
  "type": "structure",
212882
213032
  "members": {
212883
213033
  "WordFilter": {
212884
- "shape": "S62"
213034
+ "shape": "S6a"
212885
213035
  },
212886
213036
  "RegionsOfInterest": {
212887
- "shape": "S26"
213037
+ "shape": "S2e"
212888
213038
  }
212889
213039
  }
212890
213040
  }
@@ -213011,7 +213161,7 @@ module.exports={
213011
213161
  "type": "structure",
213012
213162
  "members": {
213013
213163
  "Labels": {
213014
- "shape": "S21"
213164
+ "shape": "S29"
213015
213165
  },
213016
213166
  "MinConfidence": {
213017
213167
  "type": "float"
@@ -213021,10 +213171,10 @@ module.exports={
213021
213171
  }
213022
213172
  },
213023
213173
  "RegionsOfInterestForUpdate": {
213024
- "shape": "S26"
213174
+ "shape": "S2e"
213025
213175
  },
213026
213176
  "DataSharingPreferenceForUpdate": {
213027
- "shape": "S2a"
213177
+ "shape": "S2i"
213028
213178
  },
213029
213179
  "ParametersToDelete": {
213030
213180
  "type": "list",
@@ -213184,15 +213334,15 @@ module.exports={
213184
213334
  }
213185
213335
  }
213186
213336
  },
213187
- "S1k": {
213337
+ "S1s": {
213188
213338
  "type": "structure",
213189
213339
  "members": {
213190
213340
  "Assets": {
213191
- "shape": "S1l"
213341
+ "shape": "S1t"
213192
213342
  }
213193
213343
  }
213194
213344
  },
213195
- "S1l": {
213345
+ "S1t": {
213196
213346
  "type": "list",
213197
213347
  "member": {
213198
213348
  "type": "structure",
@@ -213203,18 +213353,18 @@ module.exports={
213203
213353
  }
213204
213354
  }
213205
213355
  },
213206
- "S1n": {
213356
+ "S1v": {
213207
213357
  "type": "structure",
213208
213358
  "members": {
213209
213359
  "Assets": {
213210
- "shape": "S1l"
213360
+ "shape": "S1t"
213211
213361
  },
213212
213362
  "AutoCreate": {
213213
213363
  "type": "boolean"
213214
213364
  }
213215
213365
  }
213216
213366
  },
213217
- "S1q": {
213367
+ "S1y": {
213218
213368
  "type": "structure",
213219
213369
  "members": {
213220
213370
  "KinesisVideoStream": {
@@ -213225,7 +213375,7 @@ module.exports={
213225
213375
  }
213226
213376
  }
213227
213377
  },
213228
- "S1t": {
213378
+ "S21": {
213229
213379
  "type": "structure",
213230
213380
  "members": {
213231
213381
  "KinesisDataStream": {
@@ -213243,7 +213393,7 @@ module.exports={
213243
213393
  }
213244
213394
  }
213245
213395
  },
213246
- "S1y": {
213396
+ "S26": {
213247
213397
  "type": "structure",
213248
213398
  "members": {
213249
213399
  "FaceSearch": {
@@ -213262,7 +213412,7 @@ module.exports={
213262
213412
  ],
213263
213413
  "members": {
213264
213414
  "Labels": {
213265
- "shape": "S21"
213415
+ "shape": "S29"
213266
213416
  },
213267
213417
  "MinConfidence": {
213268
213418
  "type": "float"
@@ -213271,11 +213421,11 @@ module.exports={
213271
213421
  }
213272
213422
  }
213273
213423
  },
213274
- "S21": {
213424
+ "S29": {
213275
213425
  "type": "list",
213276
213426
  "member": {}
213277
213427
  },
213278
- "S24": {
213428
+ "S2c": {
213279
213429
  "type": "structure",
213280
213430
  "required": [
213281
213431
  "SNSTopicArn"
@@ -213284,7 +213434,7 @@ module.exports={
213284
213434
  "SNSTopicArn": {}
213285
213435
  }
213286
213436
  },
213287
- "S26": {
213437
+ "S2e": {
213288
213438
  "type": "list",
213289
213439
  "member": {
213290
213440
  "type": "structure",
@@ -213293,12 +213443,12 @@ module.exports={
213293
213443
  "shape": "Sc"
213294
213444
  },
213295
213445
  "Polygon": {
213296
- "shape": "S28"
213446
+ "shape": "S2g"
213297
213447
  }
213298
213448
  }
213299
213449
  }
213300
213450
  },
213301
- "S28": {
213451
+ "S2g": {
213302
213452
  "type": "list",
213303
213453
  "member": {
213304
213454
  "type": "structure",
@@ -213312,7 +213462,7 @@ module.exports={
213312
213462
  }
213313
213463
  }
213314
213464
  },
213315
- "S2a": {
213465
+ "S2i": {
213316
213466
  "type": "structure",
213317
213467
  "required": [
213318
213468
  "OptIn"
@@ -213323,34 +213473,34 @@ module.exports={
213323
213473
  }
213324
213474
  }
213325
213475
  },
213326
- "S2i": {
213476
+ "S2q": {
213327
213477
  "type": "list",
213328
213478
  "member": {}
213329
213479
  },
213330
- "S3h": {
213480
+ "S3p": {
213331
213481
  "type": "structure",
213332
213482
  "members": {
213333
213483
  "Assets": {
213334
- "shape": "S1l"
213484
+ "shape": "S1t"
213335
213485
  }
213336
213486
  }
213337
213487
  },
213338
- "S40": {
213488
+ "S48": {
213339
213489
  "type": "structure",
213340
213490
  "members": {
213341
213491
  "BoundingBox": {
213342
213492
  "shape": "Sc"
213343
213493
  },
213344
213494
  "Polygon": {
213345
- "shape": "S28"
213495
+ "shape": "S2g"
213346
213496
  }
213347
213497
  }
213348
213498
  },
213349
- "S42": {
213499
+ "S4a": {
213350
213500
  "type": "list",
213351
213501
  "member": {}
213352
213502
  },
213353
- "S46": {
213503
+ "S4e": {
213354
213504
  "type": "structure",
213355
213505
  "members": {
213356
213506
  "BoundingBox": {
@@ -213462,28 +213612,28 @@ module.exports={
213462
213612
  }
213463
213613
  }
213464
213614
  },
213465
- "S4k": {
213615
+ "S4s": {
213466
213616
  "type": "structure",
213467
213617
  "members": {
213468
213618
  "LabelInclusionFilters": {
213469
- "shape": "S4l"
213619
+ "shape": "S4t"
213470
213620
  },
213471
213621
  "LabelExclusionFilters": {
213472
- "shape": "S4l"
213622
+ "shape": "S4t"
213473
213623
  },
213474
213624
  "LabelCategoryInclusionFilters": {
213475
- "shape": "S4l"
213625
+ "shape": "S4t"
213476
213626
  },
213477
213627
  "LabelCategoryExclusionFilters": {
213478
- "shape": "S4l"
213628
+ "shape": "S4t"
213479
213629
  }
213480
213630
  }
213481
213631
  },
213482
- "S4l": {
213632
+ "S4t": {
213483
213633
  "type": "list",
213484
213634
  "member": {}
213485
213635
  },
213486
- "S4r": {
213636
+ "S4z": {
213487
213637
  "type": "structure",
213488
213638
  "members": {
213489
213639
  "Name": {},
@@ -213502,7 +213652,7 @@ module.exports={
213502
213652
  "type": "float"
213503
213653
  },
213504
213654
  "DominantColors": {
213505
- "shape": "S4u"
213655
+ "shape": "S52"
213506
213656
  }
213507
213657
  }
213508
213658
  }
@@ -213536,7 +213686,7 @@ module.exports={
213536
213686
  }
213537
213687
  }
213538
213688
  },
213539
- "S4u": {
213689
+ "S52": {
213540
213690
  "type": "list",
213541
213691
  "member": {
213542
213692
  "type": "structure",
@@ -213559,7 +213709,7 @@ module.exports={
213559
213709
  }
213560
213710
  }
213561
213711
  },
213562
- "S53": {
213712
+ "S5b": {
213563
213713
  "type": "structure",
213564
213714
  "members": {
213565
213715
  "Brightness": {
@@ -213573,7 +213723,7 @@ module.exports={
213573
213723
  }
213574
213724
  }
213575
213725
  },
213576
- "S5f": {
213726
+ "S5n": {
213577
213727
  "type": "structure",
213578
213728
  "members": {
213579
213729
  "Confidence": {
@@ -213583,13 +213733,13 @@ module.exports={
213583
213733
  "ParentName": {}
213584
213734
  }
213585
213735
  },
213586
- "S5z": {
213736
+ "S67": {
213587
213737
  "type": "list",
213588
213738
  "member": {
213589
213739
  "type": "integer"
213590
213740
  }
213591
213741
  },
213592
- "S62": {
213742
+ "S6a": {
213593
213743
  "type": "structure",
213594
213744
  "members": {
213595
213745
  "MinConfidence": {
@@ -213603,7 +213753,7 @@ module.exports={
213603
213753
  }
213604
213754
  }
213605
213755
  },
213606
- "S67": {
213756
+ "S6f": {
213607
213757
  "type": "structure",
213608
213758
  "members": {
213609
213759
  "DetectedText": {},
@@ -213618,21 +213768,21 @@ module.exports={
213618
213768
  "type": "float"
213619
213769
  },
213620
213770
  "Geometry": {
213621
- "shape": "S40"
213771
+ "shape": "S48"
213622
213772
  }
213623
213773
  }
213624
213774
  },
213625
- "S6g": {
213775
+ "S6o": {
213626
213776
  "type": "list",
213627
213777
  "member": {}
213628
213778
  },
213629
- "S6i": {
213779
+ "S6q": {
213630
213780
  "type": "structure",
213631
213781
  "members": {
213632
213782
  "Type": {}
213633
213783
  }
213634
213784
  },
213635
- "S6r": {
213785
+ "S6z": {
213636
213786
  "type": "structure",
213637
213787
  "members": {
213638
213788
  "Codec": {},
@@ -213652,7 +213802,22 @@ module.exports={
213652
213802
  "ColorRange": {}
213653
213803
  }
213654
213804
  },
213655
- "S7b": {
213805
+ "S7h": {
213806
+ "type": "structure",
213807
+ "members": {
213808
+ "Bytes": {
213809
+ "type": "blob",
213810
+ "sensitive": true
213811
+ },
213812
+ "S3Object": {
213813
+ "shape": "S4"
213814
+ },
213815
+ "BoundingBox": {
213816
+ "shape": "Sc"
213817
+ }
213818
+ }
213819
+ },
213820
+ "S7p": {
213656
213821
  "type": "structure",
213657
213822
  "members": {
213658
213823
  "Index": {
@@ -213662,11 +213827,11 @@ module.exports={
213662
213827
  "shape": "Sc"
213663
213828
  },
213664
213829
  "Face": {
213665
- "shape": "S46"
213830
+ "shape": "S4e"
213666
213831
  }
213667
213832
  }
213668
213833
  },
213669
- "S7d": {
213834
+ "S7r": {
213670
213835
  "type": "list",
213671
213836
  "member": {
213672
213837
  "type": "structure",
@@ -213675,12 +213840,12 @@ module.exports={
213675
213840
  "type": "float"
213676
213841
  },
213677
213842
  "Face": {
213678
- "shape": "S7f"
213843
+ "shape": "S7t"
213679
213844
  }
213680
213845
  }
213681
213846
  }
213682
213847
  },
213683
- "S7f": {
213848
+ "S7t": {
213684
213849
  "type": "structure",
213685
213850
  "members": {
213686
213851
  "FaceId": {},
@@ -213695,7 +213860,7 @@ module.exports={
213695
213860
  "IndexFacesModelVersion": {}
213696
213861
  }
213697
213862
  },
213698
- "Sa0": {
213863
+ "Sae": {
213699
213864
  "type": "structure",
213700
213865
  "members": {
213701
213866
  "S3Object": {
@@ -213703,7 +213868,7 @@ module.exports={
213703
213868
  }
213704
213869
  }
213705
213870
  },
213706
- "Sa2": {
213871
+ "Saf": {
213707
213872
  "type": "structure",
213708
213873
  "required": [
213709
213874
  "SNSTopicArn",
@@ -254966,7 +255131,7 @@ AWS.util.update(AWS, {
254966
255131
  /**
254967
255132
  * @constant
254968
255133
  */
254969
- VERSION: '2.1353.0',
255134
+ VERSION: '2.1356.0',
254970
255135
 
254971
255136
  /**
254972
255137
  * @api private
@@ -277083,7 +277248,7 @@ var LRUCache = /** @class */ (function () {
277083
277248
  }());
277084
277249
  exports.LRUCache = LRUCache;
277085
277250
  },{}],462:[function(require,module,exports){
277086
- // AWS SDK for JavaScript v2.1353.0
277251
+ // AWS SDK for JavaScript v2.1356.0
277087
277252
  // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
277088
277253
  // License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
277089
277254
  require('./browser_loader');