cdk-comprehend-s3olap 2.0.41 → 2.0.44
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.
- package/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +117 -6
- package/node_modules/aws-sdk/apis/athena-2017-05-18.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.min.json +174 -35
- package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.paginators.json +17 -0
- package/node_modules/aws-sdk/apis/docdb-2014-10-31.min.json +11 -0
- package/node_modules/aws-sdk/apis/frauddetector-2019-11-15.min.json +249 -94
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +56 -47
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +260 -59
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +73 -72
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +54 -29
- package/node_modules/aws-sdk/apis/network-firewall-2020-11-12.min.json +91 -48
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +0 -3
- package/node_modules/aws-sdk/apis/sagemaker-edge-2020-09-23.min.json +84 -4
- package/node_modules/aws-sdk/clients/acmpca.d.ts +2 -2
- package/node_modules/aws-sdk/clients/athena.d.ts +127 -0
- package/node_modules/aws-sdk/clients/cloudwatch.d.ts +40 -1
- package/node_modules/aws-sdk/clients/devopsguru.d.ts +188 -0
- package/node_modules/aws-sdk/clients/dms.d.ts +2 -2
- package/node_modules/aws-sdk/clients/docdb.d.ts +20 -0
- package/node_modules/aws-sdk/clients/frauddetector.d.ts +176 -5
- package/node_modules/aws-sdk/clients/glue.d.ts +3 -3
- package/node_modules/aws-sdk/clients/iot.d.ts +14 -2
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +192 -0
- package/node_modules/aws-sdk/clients/kendra.d.ts +12 -7
- package/node_modules/aws-sdk/clients/networkfirewall.d.ts +53 -2
- package/node_modules/aws-sdk/clients/rds.d.ts +87 -87
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemakeredge.d.ts +146 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +15 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +235 -85
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +93 -93
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -1,4 +1,4 @@
|
|
1
|
-
// AWS SDK for JavaScript v2.
|
1
|
+
// AWS SDK for JavaScript v2.1180.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){
|
@@ -6065,6 +6065,67 @@ module.exports={
|
|
6065
6065
|
}
|
6066
6066
|
}
|
6067
6067
|
},
|
6068
|
+
"GetQueryRuntimeStatistics": {
|
6069
|
+
"input": {
|
6070
|
+
"type": "structure",
|
6071
|
+
"required": [
|
6072
|
+
"QueryExecutionId"
|
6073
|
+
],
|
6074
|
+
"members": {
|
6075
|
+
"QueryExecutionId": {}
|
6076
|
+
}
|
6077
|
+
},
|
6078
|
+
"output": {
|
6079
|
+
"type": "structure",
|
6080
|
+
"members": {
|
6081
|
+
"QueryRuntimeStatistics": {
|
6082
|
+
"type": "structure",
|
6083
|
+
"members": {
|
6084
|
+
"Timeline": {
|
6085
|
+
"type": "structure",
|
6086
|
+
"members": {
|
6087
|
+
"QueryQueueTimeInMillis": {
|
6088
|
+
"type": "long"
|
6089
|
+
},
|
6090
|
+
"QueryPlanningTimeInMillis": {
|
6091
|
+
"type": "long"
|
6092
|
+
},
|
6093
|
+
"EngineExecutionTimeInMillis": {
|
6094
|
+
"type": "long"
|
6095
|
+
},
|
6096
|
+
"ServiceProcessingTimeInMillis": {
|
6097
|
+
"type": "long"
|
6098
|
+
},
|
6099
|
+
"TotalExecutionTimeInMillis": {
|
6100
|
+
"type": "long"
|
6101
|
+
}
|
6102
|
+
}
|
6103
|
+
},
|
6104
|
+
"Rows": {
|
6105
|
+
"type": "structure",
|
6106
|
+
"members": {
|
6107
|
+
"InputRows": {
|
6108
|
+
"type": "long"
|
6109
|
+
},
|
6110
|
+
"InputBytes": {
|
6111
|
+
"type": "long"
|
6112
|
+
},
|
6113
|
+
"OutputBytes": {
|
6114
|
+
"type": "long"
|
6115
|
+
},
|
6116
|
+
"OutputRows": {
|
6117
|
+
"type": "long"
|
6118
|
+
}
|
6119
|
+
}
|
6120
|
+
},
|
6121
|
+
"OutputStage": {
|
6122
|
+
"shape": "S38"
|
6123
|
+
}
|
6124
|
+
}
|
6125
|
+
}
|
6126
|
+
}
|
6127
|
+
}
|
6128
|
+
},
|
6068
6129
|
"GetTableMetadata": {
|
6069
6130
|
"input": {
|
6070
6131
|
"type": "structure",
|
@@ -6083,7 +6144,7 @@ module.exports={
|
|
6083
6144
|
"type": "structure",
|
6084
6145
|
"members": {
|
6085
6146
|
"TableMetadata": {
|
6086
|
-
"shape": "
|
6147
|
+
"shape": "S3f"
|
6087
6148
|
}
|
6088
6149
|
}
|
6089
6150
|
}
|
@@ -6296,7 +6357,7 @@ module.exports={
|
|
6296
6357
|
"TableMetadataList": {
|
6297
6358
|
"type": "list",
|
6298
6359
|
"member": {
|
6299
|
-
"shape": "
|
6360
|
+
"shape": "S3f"
|
6300
6361
|
}
|
6301
6362
|
},
|
6302
6363
|
"NextToken": {}
|
@@ -6788,7 +6849,57 @@ module.exports={
|
|
6788
6849
|
}
|
6789
6850
|
}
|
6790
6851
|
},
|
6791
|
-
"
|
6852
|
+
"S38": {
|
6853
|
+
"type": "structure",
|
6854
|
+
"members": {
|
6855
|
+
"StageId": {
|
6856
|
+
"type": "long"
|
6857
|
+
},
|
6858
|
+
"State": {},
|
6859
|
+
"OutputBytes": {
|
6860
|
+
"type": "long"
|
6861
|
+
},
|
6862
|
+
"OutputRows": {
|
6863
|
+
"type": "long"
|
6864
|
+
},
|
6865
|
+
"InputBytes": {
|
6866
|
+
"type": "long"
|
6867
|
+
},
|
6868
|
+
"InputRows": {
|
6869
|
+
"type": "long"
|
6870
|
+
},
|
6871
|
+
"ExecutionTime": {
|
6872
|
+
"type": "long"
|
6873
|
+
},
|
6874
|
+
"QueryStagePlan": {
|
6875
|
+
"shape": "S39"
|
6876
|
+
},
|
6877
|
+
"SubStages": {
|
6878
|
+
"type": "list",
|
6879
|
+
"member": {
|
6880
|
+
"shape": "S38"
|
6881
|
+
}
|
6882
|
+
}
|
6883
|
+
}
|
6884
|
+
},
|
6885
|
+
"S39": {
|
6886
|
+
"type": "structure",
|
6887
|
+
"members": {
|
6888
|
+
"Name": {},
|
6889
|
+
"Identifier": {},
|
6890
|
+
"Children": {
|
6891
|
+
"type": "list",
|
6892
|
+
"member": {
|
6893
|
+
"shape": "S39"
|
6894
|
+
}
|
6895
|
+
},
|
6896
|
+
"RemoteSources": {
|
6897
|
+
"type": "list",
|
6898
|
+
"member": {}
|
6899
|
+
}
|
6900
|
+
}
|
6901
|
+
},
|
6902
|
+
"S3f": {
|
6792
6903
|
"type": "structure",
|
6793
6904
|
"required": [
|
6794
6905
|
"Name"
|
@@ -6803,17 +6914,17 @@ module.exports={
|
|
6803
6914
|
},
|
6804
6915
|
"TableType": {},
|
6805
6916
|
"Columns": {
|
6806
|
-
"shape": "
|
6917
|
+
"shape": "S3i"
|
6807
6918
|
},
|
6808
6919
|
"PartitionKeys": {
|
6809
|
-
"shape": "
|
6920
|
+
"shape": "S3i"
|
6810
6921
|
},
|
6811
6922
|
"Parameters": {
|
6812
6923
|
"shape": "S1l"
|
6813
6924
|
}
|
6814
6925
|
}
|
6815
6926
|
},
|
6816
|
-
"
|
6927
|
+
"S3i": {
|
6817
6928
|
"type": "list",
|
6818
6929
|
"member": {
|
6819
6930
|
"type": "structure",
|
@@ -6849,6 +6960,11 @@ module.exports={
|
|
6849
6960
|
"output_token": "NextToken",
|
6850
6961
|
"result_key": "DatabaseList"
|
6851
6962
|
},
|
6963
|
+
"ListEngineVersions": {
|
6964
|
+
"input_token": "NextToken",
|
6965
|
+
"limit_key": "MaxResults",
|
6966
|
+
"output_token": "NextToken"
|
6967
|
+
},
|
6852
6968
|
"ListNamedQueries": {
|
6853
6969
|
"input_token": "NextToken",
|
6854
6970
|
"limit_key": "MaxResults",
|
@@ -144604,7 +144720,7 @@ module.exports={
|
|
144604
144720
|
"shape": "Sls"
|
144605
144721
|
},
|
144606
144722
|
"thingGroupIndexingConfiguration": {
|
144607
|
-
"shape": "
|
144723
|
+
"shape": "Sm4"
|
144608
144724
|
}
|
144609
144725
|
}
|
144610
144726
|
}
|
@@ -145050,7 +145166,7 @@ module.exports={
|
|
145050
145166
|
"shape": "S8s"
|
145051
145167
|
},
|
145052
145168
|
"violationEventAdditionalInfo": {
|
145053
|
-
"shape": "
|
145169
|
+
"shape": "Snm"
|
145054
145170
|
},
|
145055
145171
|
"verificationState": {},
|
145056
145172
|
"verificationStateDescription": {},
|
@@ -145101,7 +145217,7 @@ module.exports={
|
|
145101
145217
|
"type": "structure",
|
145102
145218
|
"members": {
|
145103
145219
|
"policies": {
|
145104
|
-
"shape": "
|
145220
|
+
"shape": "Snt"
|
145105
145221
|
},
|
145106
145222
|
"nextMarker": {}
|
145107
145223
|
}
|
@@ -145538,7 +145654,7 @@ module.exports={
|
|
145538
145654
|
"type": "structure",
|
145539
145655
|
"members": {
|
145540
145656
|
"certificates": {
|
145541
|
-
"shape": "
|
145657
|
+
"shape": "Sov"
|
145542
145658
|
},
|
145543
145659
|
"nextMarker": {}
|
145544
145660
|
}
|
@@ -145579,7 +145695,7 @@ module.exports={
|
|
145579
145695
|
"type": "structure",
|
145580
145696
|
"members": {
|
145581
145697
|
"certificates": {
|
145582
|
-
"shape": "
|
145698
|
+
"shape": "Sov"
|
145583
145699
|
},
|
145584
145700
|
"nextMarker": {}
|
145585
145701
|
}
|
@@ -145907,7 +146023,7 @@ module.exports={
|
|
145907
146023
|
"members": {
|
145908
146024
|
"thingArn": {},
|
145909
146025
|
"jobExecutionSummary": {
|
145910
|
-
"shape": "
|
146026
|
+
"shape": "Spv"
|
145911
146027
|
}
|
145912
146028
|
}
|
145913
146029
|
}
|
@@ -145964,7 +146080,7 @@ module.exports={
|
|
145964
146080
|
"members": {
|
145965
146081
|
"jobId": {},
|
145966
146082
|
"jobExecutionSummary": {
|
145967
|
-
"shape": "
|
146083
|
+
"shape": "Spv"
|
145968
146084
|
}
|
145969
146085
|
}
|
145970
146086
|
}
|
@@ -146364,7 +146480,7 @@ module.exports={
|
|
146364
146480
|
"type": "structure",
|
146365
146481
|
"members": {
|
146366
146482
|
"policies": {
|
146367
|
-
"shape": "
|
146483
|
+
"shape": "Snt"
|
146368
146484
|
},
|
146369
146485
|
"nextMarker": {}
|
146370
146486
|
}
|
@@ -146405,7 +146521,7 @@ module.exports={
|
|
146405
146521
|
"type": "structure",
|
146406
146522
|
"members": {
|
146407
146523
|
"principals": {
|
146408
|
-
"shape": "
|
146524
|
+
"shape": "Sqx"
|
146409
146525
|
},
|
146410
146526
|
"nextMarker": {}
|
146411
146527
|
}
|
@@ -146485,7 +146601,7 @@ module.exports={
|
|
146485
146601
|
"type": "structure",
|
146486
146602
|
"members": {
|
146487
146603
|
"policies": {
|
146488
|
-
"shape": "
|
146604
|
+
"shape": "Snt"
|
146489
146605
|
},
|
146490
146606
|
"nextMarker": {}
|
146491
146607
|
}
|
@@ -146522,7 +146638,7 @@ module.exports={
|
|
146522
146638
|
"type": "structure",
|
146523
146639
|
"members": {
|
146524
146640
|
"things": {
|
146525
|
-
"shape": "
|
146641
|
+
"shape": "Sr7"
|
146526
146642
|
},
|
146527
146643
|
"nextToken": {}
|
146528
146644
|
}
|
@@ -146731,7 +146847,7 @@ module.exports={
|
|
146731
146847
|
"securityProfileIdentifiers": {
|
146732
146848
|
"type": "list",
|
146733
146849
|
"member": {
|
146734
|
-
"shape": "
|
146850
|
+
"shape": "Srq"
|
146735
146851
|
}
|
146736
146852
|
},
|
146737
146853
|
"nextToken": {}
|
@@ -146778,10 +146894,10 @@ module.exports={
|
|
146778
146894
|
"type": "structure",
|
146779
146895
|
"members": {
|
146780
146896
|
"securityProfileIdentifier": {
|
146781
|
-
"shape": "
|
146897
|
+
"shape": "Srq"
|
146782
146898
|
},
|
146783
146899
|
"target": {
|
146784
|
-
"shape": "
|
146900
|
+
"shape": "Srv"
|
146785
146901
|
}
|
146786
146902
|
}
|
146787
146903
|
}
|
@@ -146934,7 +147050,7 @@ module.exports={
|
|
146934
147050
|
"securityProfileTargets": {
|
146935
147051
|
"type": "list",
|
146936
147052
|
"member": {
|
146937
|
-
"shape": "
|
147053
|
+
"shape": "Srv"
|
146938
147054
|
}
|
146939
147055
|
},
|
146940
147056
|
"nextToken": {}
|
@@ -147049,7 +147165,7 @@ module.exports={
|
|
147049
147165
|
"type": "structure",
|
147050
147166
|
"members": {
|
147051
147167
|
"principals": {
|
147052
|
-
"shape": "
|
147168
|
+
"shape": "Sqx"
|
147053
147169
|
},
|
147054
147170
|
"nextToken": {}
|
147055
147171
|
}
|
@@ -147268,7 +147384,7 @@ module.exports={
|
|
147268
147384
|
"type": "structure",
|
147269
147385
|
"members": {
|
147270
147386
|
"things": {
|
147271
|
-
"shape": "
|
147387
|
+
"shape": "Sr7"
|
147272
147388
|
},
|
147273
147389
|
"nextToken": {}
|
147274
147390
|
}
|
@@ -147309,7 +147425,7 @@ module.exports={
|
|
147309
147425
|
"type": "structure",
|
147310
147426
|
"members": {
|
147311
147427
|
"things": {
|
147312
|
-
"shape": "
|
147428
|
+
"shape": "Sr7"
|
147313
147429
|
},
|
147314
147430
|
"nextToken": {}
|
147315
147431
|
}
|
@@ -147461,7 +147577,7 @@ module.exports={
|
|
147461
147577
|
"type": "structure",
|
147462
147578
|
"members": {
|
147463
147579
|
"logTarget": {
|
147464
|
-
"shape": "
|
147580
|
+
"shape": "Stj"
|
147465
147581
|
},
|
147466
147582
|
"logLevel": {}
|
147467
147583
|
}
|
@@ -147543,7 +147659,7 @@ module.exports={
|
|
147543
147659
|
"shape": "S8s"
|
147544
147660
|
},
|
147545
147661
|
"violationEventAdditionalInfo": {
|
147546
|
-
"shape": "
|
147662
|
+
"shape": "Snm"
|
147547
147663
|
},
|
147548
147664
|
"violationEventType": {},
|
147549
147665
|
"verificationState": {},
|
@@ -147814,7 +147930,7 @@ module.exports={
|
|
147814
147930
|
"thingId": {},
|
147815
147931
|
"thingTypeName": {},
|
147816
147932
|
"thingGroupNames": {
|
147817
|
-
"shape": "
|
147933
|
+
"shape": "Suf"
|
147818
147934
|
},
|
147819
147935
|
"attributes": {
|
147820
147936
|
"shape": "S3i"
|
@@ -147848,7 +147964,7 @@ module.exports={
|
|
147848
147964
|
"shape": "S3i"
|
147849
147965
|
},
|
147850
147966
|
"parentGroupNames": {
|
147851
|
-
"shape": "
|
147967
|
+
"shape": "Suf"
|
147852
147968
|
}
|
147853
147969
|
}
|
147854
147970
|
}
|
@@ -147936,7 +148052,7 @@ module.exports={
|
|
147936
148052
|
],
|
147937
148053
|
"members": {
|
147938
148054
|
"logTarget": {
|
147939
|
-
"shape": "
|
148055
|
+
"shape": "Stj"
|
147940
148056
|
},
|
147941
148057
|
"logLevel": {}
|
147942
148058
|
}
|
@@ -148145,7 +148261,7 @@ module.exports={
|
|
148145
148261
|
"authInfos": {
|
148146
148262
|
"type": "list",
|
148147
148263
|
"member": {
|
148148
|
-
"shape": "
|
148264
|
+
"shape": "Sv8"
|
148149
148265
|
}
|
148150
148266
|
},
|
148151
148267
|
"clientId": {
|
@@ -148153,10 +148269,10 @@ module.exports={
|
|
148153
148269
|
"locationName": "clientId"
|
148154
148270
|
},
|
148155
148271
|
"policyNamesToAdd": {
|
148156
|
-
"shape": "
|
148272
|
+
"shape": "Svc"
|
148157
148273
|
},
|
148158
148274
|
"policyNamesToSkip": {
|
148159
|
-
"shape": "
|
148275
|
+
"shape": "Svc"
|
148160
148276
|
}
|
148161
148277
|
}
|
148162
148278
|
},
|
@@ -148169,13 +148285,13 @@ module.exports={
|
|
148169
148285
|
"type": "structure",
|
148170
148286
|
"members": {
|
148171
148287
|
"authInfo": {
|
148172
|
-
"shape": "
|
148288
|
+
"shape": "Sv8"
|
148173
148289
|
},
|
148174
148290
|
"allowed": {
|
148175
148291
|
"type": "structure",
|
148176
148292
|
"members": {
|
148177
148293
|
"policies": {
|
148178
|
-
"shape": "
|
148294
|
+
"shape": "Snt"
|
148179
148295
|
}
|
148180
148296
|
}
|
148181
148297
|
},
|
@@ -148186,7 +148302,7 @@ module.exports={
|
|
148186
148302
|
"type": "structure",
|
148187
148303
|
"members": {
|
148188
148304
|
"policies": {
|
148189
|
-
"shape": "
|
148305
|
+
"shape": "Snt"
|
148190
148306
|
}
|
148191
148307
|
}
|
148192
148308
|
},
|
@@ -148194,7 +148310,7 @@ module.exports={
|
|
148194
148310
|
"type": "structure",
|
148195
148311
|
"members": {
|
148196
148312
|
"policies": {
|
148197
|
-
"shape": "
|
148313
|
+
"shape": "Snt"
|
148198
148314
|
}
|
148199
148315
|
}
|
148200
148316
|
}
|
@@ -148708,7 +148824,7 @@ module.exports={
|
|
148708
148824
|
"shape": "Sls"
|
148709
148825
|
},
|
148710
148826
|
"thingGroupIndexingConfiguration": {
|
148711
|
-
"shape": "
|
148827
|
+
"shape": "Sm4"
|
148712
148828
|
}
|
148713
148829
|
}
|
148714
148830
|
},
|
@@ -149066,10 +149182,10 @@ module.exports={
|
|
149066
149182
|
"members": {
|
149067
149183
|
"thingName": {},
|
149068
149184
|
"thingGroupsToAdd": {
|
149069
|
-
"shape": "
|
149185
|
+
"shape": "Sxn"
|
149070
149186
|
},
|
149071
149187
|
"thingGroupsToRemove": {
|
149072
|
-
"shape": "
|
149188
|
+
"shape": "Sxn"
|
149073
149189
|
},
|
149074
149190
|
"overrideDynamicGroups": {
|
149075
149191
|
"type": "boolean"
|
@@ -150523,6 +150639,15 @@ module.exports={
|
|
150523
150639
|
},
|
150524
150640
|
"customFields": {
|
150525
150641
|
"shape": "Slx"
|
150642
|
+
},
|
150643
|
+
"filter": {
|
150644
|
+
"type": "structure",
|
150645
|
+
"members": {
|
150646
|
+
"namedShadowNames": {
|
150647
|
+
"type": "list",
|
150648
|
+
"member": {}
|
150649
|
+
}
|
150650
|
+
}
|
150526
150651
|
}
|
150527
150652
|
}
|
150528
150653
|
},
|
@@ -150536,7 +150661,7 @@ module.exports={
|
|
150536
150661
|
}
|
150537
150662
|
}
|
150538
150663
|
},
|
150539
|
-
"
|
150664
|
+
"Sm4": {
|
150540
150665
|
"type": "structure",
|
150541
150666
|
"required": [
|
150542
150667
|
"thingGroupIndexingMode"
|
@@ -150551,13 +150676,13 @@ module.exports={
|
|
150551
150676
|
}
|
150552
150677
|
}
|
150553
150678
|
},
|
150554
|
-
"
|
150679
|
+
"Snm": {
|
150555
150680
|
"type": "structure",
|
150556
150681
|
"members": {
|
150557
150682
|
"confidenceLevel": {}
|
150558
150683
|
}
|
150559
150684
|
},
|
150560
|
-
"
|
150685
|
+
"Snt": {
|
150561
150686
|
"type": "list",
|
150562
150687
|
"member": {
|
150563
150688
|
"type": "structure",
|
@@ -150567,7 +150692,7 @@ module.exports={
|
|
150567
150692
|
}
|
150568
150693
|
}
|
150569
150694
|
},
|
150570
|
-
"
|
150695
|
+
"Sov": {
|
150571
150696
|
"type": "list",
|
150572
150697
|
"member": {
|
150573
150698
|
"type": "structure",
|
@@ -150582,7 +150707,7 @@ module.exports={
|
|
150582
150707
|
}
|
150583
150708
|
}
|
150584
150709
|
},
|
150585
|
-
"
|
150710
|
+
"Spv": {
|
150586
150711
|
"type": "structure",
|
150587
150712
|
"members": {
|
150588
150713
|
"status": {},
|
@@ -150603,15 +150728,15 @@ module.exports={
|
|
150603
150728
|
}
|
150604
150729
|
}
|
150605
150730
|
},
|
150606
|
-
"
|
150731
|
+
"Sqx": {
|
150607
150732
|
"type": "list",
|
150608
150733
|
"member": {}
|
150609
150734
|
},
|
150610
|
-
"
|
150735
|
+
"Sr7": {
|
150611
150736
|
"type": "list",
|
150612
150737
|
"member": {}
|
150613
150738
|
},
|
150614
|
-
"
|
150739
|
+
"Srq": {
|
150615
150740
|
"type": "structure",
|
150616
150741
|
"required": [
|
150617
150742
|
"name",
|
@@ -150622,7 +150747,7 @@ module.exports={
|
|
150622
150747
|
"arn": {}
|
150623
150748
|
}
|
150624
150749
|
},
|
150625
|
-
"
|
150750
|
+
"Srv": {
|
150626
150751
|
"type": "structure",
|
150627
150752
|
"required": [
|
150628
150753
|
"arn"
|
@@ -150631,7 +150756,7 @@ module.exports={
|
|
150631
150756
|
"arn": {}
|
150632
150757
|
}
|
150633
150758
|
},
|
150634
|
-
"
|
150759
|
+
"Stj": {
|
150635
150760
|
"type": "structure",
|
150636
150761
|
"required": [
|
150637
150762
|
"targetType"
|
@@ -150641,11 +150766,11 @@ module.exports={
|
|
150641
150766
|
"targetName": {}
|
150642
150767
|
}
|
150643
150768
|
},
|
150644
|
-
"
|
150769
|
+
"Suf": {
|
150645
150770
|
"type": "list",
|
150646
150771
|
"member": {}
|
150647
150772
|
},
|
150648
|
-
"
|
150773
|
+
"Sv8": {
|
150649
150774
|
"type": "structure",
|
150650
150775
|
"required": [
|
150651
150776
|
"resources"
|
@@ -150658,11 +150783,11 @@ module.exports={
|
|
150658
150783
|
}
|
150659
150784
|
}
|
150660
150785
|
},
|
150661
|
-
"
|
150786
|
+
"Svc": {
|
150662
150787
|
"type": "list",
|
150663
150788
|
"member": {}
|
150664
150789
|
},
|
150665
|
-
"
|
150790
|
+
"Sxn": {
|
150666
150791
|
"type": "list",
|
150667
150792
|
"member": {}
|
150668
150793
|
}
|
@@ -169699,7 +169824,19 @@ module.exports={
|
|
169699
169824
|
"StateUpdatedTimestamp": {
|
169700
169825
|
"type": "timestamp"
|
169701
169826
|
},
|
169702
|
-
"StateValue": {}
|
169827
|
+
"StateValue": {},
|
169828
|
+
"StateTransitionedTimestamp": {
|
169829
|
+
"type": "timestamp"
|
169830
|
+
},
|
169831
|
+
"ActionsSuppressedBy": {},
|
169832
|
+
"ActionsSuppressedReason": {},
|
169833
|
+
"ActionsSuppressor": {},
|
169834
|
+
"ActionsSuppressorWaitPeriod": {
|
169835
|
+
"type": "integer"
|
169836
|
+
},
|
169837
|
+
"ActionsSuppressorExtensionPeriod": {
|
169838
|
+
"type": "integer"
|
169839
|
+
}
|
169703
169840
|
},
|
169704
169841
|
"xmlOrder": [
|
169705
169842
|
"ActionsEnabled",
|
@@ -169714,12 +169851,18 @@ module.exports={
|
|
169714
169851
|
"StateReason",
|
169715
169852
|
"StateReasonData",
|
169716
169853
|
"StateUpdatedTimestamp",
|
169717
|
-
"StateValue"
|
169854
|
+
"StateValue",
|
169855
|
+
"StateTransitionedTimestamp",
|
169856
|
+
"ActionsSuppressedBy",
|
169857
|
+
"ActionsSuppressedReason",
|
169858
|
+
"ActionsSuppressor",
|
169859
|
+
"ActionsSuppressorWaitPeriod",
|
169860
|
+
"ActionsSuppressorExtensionPeriod"
|
169718
169861
|
]
|
169719
169862
|
}
|
169720
169863
|
},
|
169721
169864
|
"MetricAlarms": {
|
169722
|
-
"shape": "
|
169865
|
+
"shape": "S23"
|
169723
169866
|
},
|
169724
169867
|
"NextToken": {}
|
169725
169868
|
}
|
@@ -169751,7 +169894,7 @@ module.exports={
|
|
169751
169894
|
"type": "structure",
|
169752
169895
|
"members": {
|
169753
169896
|
"MetricAlarms": {
|
169754
|
-
"shape": "
|
169897
|
+
"shape": "S23"
|
169755
169898
|
}
|
169756
169899
|
}
|
169757
169900
|
}
|
@@ -169802,7 +169945,7 @@ module.exports={
|
|
169802
169945
|
"deprecatedMessage": "Use SingleMetricAnomalyDetector.Stat property."
|
169803
169946
|
},
|
169804
169947
|
"Configuration": {
|
169805
|
-
"shape": "
|
169948
|
+
"shape": "S2m"
|
169806
169949
|
},
|
169807
169950
|
"StateValue": {},
|
169808
169951
|
"SingleMetricAnomalyDetector": {
|
@@ -170121,14 +170264,14 @@ module.exports={
|
|
170121
170264
|
},
|
170122
170265
|
"StatusCode": {},
|
170123
170266
|
"Messages": {
|
170124
|
-
"shape": "
|
170267
|
+
"shape": "S43"
|
170125
170268
|
}
|
170126
170269
|
}
|
170127
170270
|
}
|
170128
170271
|
},
|
170129
170272
|
"NextToken": {},
|
170130
170273
|
"Messages": {
|
170131
|
-
"shape": "
|
170274
|
+
"shape": "S43"
|
170132
170275
|
}
|
170133
170276
|
}
|
170134
170277
|
}
|
@@ -170238,10 +170381,10 @@ module.exports={
|
|
170238
170381
|
"Arn": {},
|
170239
170382
|
"Name": {},
|
170240
170383
|
"IncludeFilters": {
|
170241
|
-
"shape": "
|
170384
|
+
"shape": "S4h"
|
170242
170385
|
},
|
170243
170386
|
"ExcludeFilters": {
|
170244
|
-
"shape": "
|
170387
|
+
"shape": "S4h"
|
170245
170388
|
},
|
170246
170389
|
"FirehoseArn": {},
|
170247
170390
|
"RoleArn": {},
|
@@ -170254,7 +170397,7 @@ module.exports={
|
|
170254
170397
|
},
|
170255
170398
|
"OutputFormat": {},
|
170256
170399
|
"StatisticsConfigurations": {
|
170257
|
-
"shape": "
|
170400
|
+
"shape": "S4l"
|
170258
170401
|
}
|
170259
170402
|
}
|
170260
170403
|
}
|
@@ -170405,7 +170548,7 @@ module.exports={
|
|
170405
170548
|
"type": "structure",
|
170406
170549
|
"members": {
|
170407
170550
|
"Tags": {
|
170408
|
-
"shape": "
|
170551
|
+
"shape": "S5g"
|
170409
170552
|
}
|
170410
170553
|
}
|
170411
170554
|
}
|
@@ -170432,7 +170575,7 @@ module.exports={
|
|
170432
170575
|
"deprecatedMessage": "Use SingleMetricAnomalyDetector."
|
170433
170576
|
},
|
170434
170577
|
"Configuration": {
|
170435
|
-
"shape": "
|
170578
|
+
"shape": "S2m"
|
170436
170579
|
},
|
170437
170580
|
"SingleMetricAnomalyDetector": {
|
170438
170581
|
"shape": "Sc"
|
@@ -170472,7 +170615,14 @@ module.exports={
|
|
170472
170615
|
"shape": "S1t"
|
170473
170616
|
},
|
170474
170617
|
"Tags": {
|
170475
|
-
"shape": "
|
170618
|
+
"shape": "S5g"
|
170619
|
+
},
|
170620
|
+
"ActionsSuppressor": {},
|
170621
|
+
"ActionsSuppressorWaitPeriod": {
|
170622
|
+
"type": "integer"
|
170623
|
+
},
|
170624
|
+
"ActionsSuppressorExtensionPeriod": {
|
170625
|
+
"type": "integer"
|
170476
170626
|
}
|
170477
170627
|
}
|
170478
170628
|
}
|
@@ -170518,7 +170668,7 @@ module.exports={
|
|
170518
170668
|
"RuleState": {},
|
170519
170669
|
"RuleDefinition": {},
|
170520
170670
|
"Tags": {
|
170521
|
-
"shape": "
|
170671
|
+
"shape": "S5g"
|
170522
170672
|
}
|
170523
170673
|
}
|
170524
170674
|
},
|
@@ -170578,7 +170728,7 @@ module.exports={
|
|
170578
170728
|
"shape": "Se"
|
170579
170729
|
},
|
170580
170730
|
"Tags": {
|
170581
|
-
"shape": "
|
170731
|
+
"shape": "S5g"
|
170582
170732
|
},
|
170583
170733
|
"ThresholdMetricId": {}
|
170584
170734
|
}
|
@@ -170668,19 +170818,19 @@ module.exports={
|
|
170668
170818
|
"members": {
|
170669
170819
|
"Name": {},
|
170670
170820
|
"IncludeFilters": {
|
170671
|
-
"shape": "
|
170821
|
+
"shape": "S4h"
|
170672
170822
|
},
|
170673
170823
|
"ExcludeFilters": {
|
170674
|
-
"shape": "
|
170824
|
+
"shape": "S4h"
|
170675
170825
|
},
|
170676
170826
|
"FirehoseArn": {},
|
170677
170827
|
"RoleArn": {},
|
170678
170828
|
"OutputFormat": {},
|
170679
170829
|
"Tags": {
|
170680
|
-
"shape": "
|
170830
|
+
"shape": "S5g"
|
170681
170831
|
},
|
170682
170832
|
"StatisticsConfigurations": {
|
170683
|
-
"shape": "
|
170833
|
+
"shape": "S4l"
|
170684
170834
|
}
|
170685
170835
|
}
|
170686
170836
|
},
|
@@ -170716,7 +170866,7 @@ module.exports={
|
|
170716
170866
|
],
|
170717
170867
|
"members": {
|
170718
170868
|
"Names": {
|
170719
|
-
"shape": "
|
170869
|
+
"shape": "S67"
|
170720
170870
|
}
|
170721
170871
|
}
|
170722
170872
|
},
|
@@ -170734,7 +170884,7 @@ module.exports={
|
|
170734
170884
|
],
|
170735
170885
|
"members": {
|
170736
170886
|
"Names": {
|
170737
|
-
"shape": "
|
170887
|
+
"shape": "S67"
|
170738
170888
|
}
|
170739
170889
|
}
|
170740
170890
|
},
|
@@ -170754,7 +170904,7 @@ module.exports={
|
|
170754
170904
|
"members": {
|
170755
170905
|
"ResourceARN": {},
|
170756
170906
|
"Tags": {
|
170757
|
-
"shape": "
|
170907
|
+
"shape": "S5g"
|
170758
170908
|
}
|
170759
170909
|
}
|
170760
170910
|
},
|
@@ -170906,7 +171056,7 @@ module.exports={
|
|
170906
171056
|
"type": "list",
|
170907
171057
|
"member": {}
|
170908
171058
|
},
|
170909
|
-
"
|
171059
|
+
"S23": {
|
170910
171060
|
"type": "list",
|
170911
171061
|
"member": {
|
170912
171062
|
"type": "structure",
|
@@ -170994,7 +171144,7 @@ module.exports={
|
|
170994
171144
|
]
|
170995
171145
|
}
|
170996
171146
|
},
|
170997
|
-
"
|
171147
|
+
"S2m": {
|
170998
171148
|
"type": "structure",
|
170999
171149
|
"members": {
|
171000
171150
|
"ExcludedTimeRanges": {
|
@@ -171022,7 +171172,7 @@ module.exports={
|
|
171022
171172
|
"MetricTimezone": {}
|
171023
171173
|
}
|
171024
171174
|
},
|
171025
|
-
"
|
171175
|
+
"S43": {
|
171026
171176
|
"type": "list",
|
171027
171177
|
"member": {
|
171028
171178
|
"type": "structure",
|
@@ -171032,7 +171182,7 @@ module.exports={
|
|
171032
171182
|
}
|
171033
171183
|
}
|
171034
171184
|
},
|
171035
|
-
"
|
171185
|
+
"S4h": {
|
171036
171186
|
"type": "list",
|
171037
171187
|
"member": {
|
171038
171188
|
"type": "structure",
|
@@ -171041,7 +171191,7 @@ module.exports={
|
|
171041
171191
|
}
|
171042
171192
|
}
|
171043
171193
|
},
|
171044
|
-
"
|
171194
|
+
"S4l": {
|
171045
171195
|
"type": "list",
|
171046
171196
|
"member": {
|
171047
171197
|
"type": "structure",
|
@@ -171071,7 +171221,7 @@ module.exports={
|
|
171071
171221
|
}
|
171072
171222
|
}
|
171073
171223
|
},
|
171074
|
-
"
|
171224
|
+
"S5g": {
|
171075
171225
|
"type": "list",
|
171076
171226
|
"member": {
|
171077
171227
|
"type": "structure",
|
@@ -171085,7 +171235,7 @@ module.exports={
|
|
171085
171235
|
}
|
171086
171236
|
}
|
171087
171237
|
},
|
171088
|
-
"
|
171238
|
+
"S67": {
|
171089
171239
|
"type": "list",
|
171090
171240
|
"member": {}
|
171091
171241
|
}
|
@@ -240671,7 +240821,7 @@ AWS.util.update(AWS, {
|
|
240671
240821
|
/**
|
240672
240822
|
* @constant
|
240673
240823
|
*/
|
240674
|
-
VERSION: '2.
|
240824
|
+
VERSION: '2.1180.0',
|
240675
240825
|
|
240676
240826
|
/**
|
240677
240827
|
* @api private
|
@@ -262616,7 +262766,7 @@ var LRUCache = /** @class */ (function () {
|
|
262616
262766
|
}());
|
262617
262767
|
exports.LRUCache = LRUCache;
|
262618
262768
|
},{}],457:[function(require,module,exports){
|
262619
|
-
// AWS SDK for JavaScript v2.
|
262769
|
+
// AWS SDK for JavaScript v2.1180.0
|
262620
262770
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
262621
262771
|
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
|
262622
262772
|
require('./browser_loader');
|