cdk-comprehend-s3olap 2.0.42 → 2.0.45
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 +22 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/account-2021-02-01.min.json +101 -0
- 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/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/iotdeviceadvisor-2020-09-18.min.json +33 -12
- 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/medialive-2017-10-14.min.json +50 -3
- 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/rds-2014-10-31.min.json +143 -119
- package/node_modules/aws-sdk/apis/transcribe-2017-10-26.min.json +2 -1
- package/node_modules/aws-sdk/clients/account.d.ts +104 -6
- 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/dms.d.ts +2 -2
- package/node_modules/aws-sdk/clients/docdb.d.ts +20 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/frauddetector.d.ts +176 -5
- package/node_modules/aws-sdk/clients/iot.d.ts +14 -2
- package/node_modules/aws-sdk/clients/iotdeviceadvisor.d.ts +49 -0
- 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/medialive.d.ts +37 -0
- package/node_modules/aws-sdk/clients/networkfirewall.d.ts +53 -2
- package/node_modules/aws-sdk/clients/rds.d.ts +137 -87
- package/node_modules/aws-sdk/clients/transcribeservice.d.ts +2 -2
- 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 +16 -16
- package/node_modules/aws-sdk/dist/aws-sdk.js +378 -204
- 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 +3 -3
@@ -1,4 +1,4 @@
|
|
1
|
-
// AWS SDK for JavaScript v2.
|
1
|
+
// AWS SDK for JavaScript v2.1181.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
|
}
|
@@ -187643,7 +187793,7 @@ module.exports={
|
|
187643
187793
|
"DBProxyName": {},
|
187644
187794
|
"EngineFamily": {},
|
187645
187795
|
"Auth": {
|
187646
|
-
"shape": "
|
187796
|
+
"shape": "S3w"
|
187647
187797
|
},
|
187648
187798
|
"RoleArn": {},
|
187649
187799
|
"VpcSubnetIds": {
|
@@ -187671,7 +187821,7 @@ module.exports={
|
|
187671
187821
|
"type": "structure",
|
187672
187822
|
"members": {
|
187673
187823
|
"DBProxy": {
|
187674
|
-
"shape": "
|
187824
|
+
"shape": "S41"
|
187675
187825
|
}
|
187676
187826
|
}
|
187677
187827
|
}
|
@@ -187704,7 +187854,7 @@ module.exports={
|
|
187704
187854
|
"type": "structure",
|
187705
187855
|
"members": {
|
187706
187856
|
"DBProxyEndpoint": {
|
187707
|
-
"shape": "
|
187857
|
+
"shape": "S4a"
|
187708
187858
|
}
|
187709
187859
|
}
|
187710
187860
|
}
|
@@ -187771,7 +187921,7 @@ module.exports={
|
|
187771
187921
|
"DBSubnetGroupName": {},
|
187772
187922
|
"DBSubnetGroupDescription": {},
|
187773
187923
|
"SubnetIds": {
|
187774
|
-
"shape": "
|
187924
|
+
"shape": "S4h"
|
187775
187925
|
},
|
187776
187926
|
"Tags": {
|
187777
187927
|
"shape": "Sb"
|
@@ -187845,7 +187995,7 @@ module.exports={
|
|
187845
187995
|
"type": "structure",
|
187846
187996
|
"members": {
|
187847
187997
|
"GlobalCluster": {
|
187848
|
-
"shape": "
|
187998
|
+
"shape": "S4n"
|
187849
187999
|
}
|
187850
188000
|
}
|
187851
188001
|
}
|
@@ -188006,7 +188156,7 @@ module.exports={
|
|
188006
188156
|
"type": "structure",
|
188007
188157
|
"members": {
|
188008
188158
|
"DBInstanceAutomatedBackup": {
|
188009
|
-
"shape": "
|
188159
|
+
"shape": "S56"
|
188010
188160
|
}
|
188011
188161
|
}
|
188012
188162
|
}
|
@@ -188037,7 +188187,7 @@ module.exports={
|
|
188037
188187
|
"type": "structure",
|
188038
188188
|
"members": {
|
188039
188189
|
"DBProxy": {
|
188040
|
-
"shape": "
|
188190
|
+
"shape": "S41"
|
188041
188191
|
}
|
188042
188192
|
}
|
188043
188193
|
}
|
@@ -188057,7 +188207,7 @@ module.exports={
|
|
188057
188207
|
"type": "structure",
|
188058
188208
|
"members": {
|
188059
188209
|
"DBProxyEndpoint": {
|
188060
|
-
"shape": "
|
188210
|
+
"shape": "S4a"
|
188061
188211
|
}
|
188062
188212
|
}
|
188063
188213
|
}
|
@@ -188139,7 +188289,7 @@ module.exports={
|
|
188139
188289
|
"type": "structure",
|
188140
188290
|
"members": {
|
188141
188291
|
"GlobalCluster": {
|
188142
|
-
"shape": "
|
188292
|
+
"shape": "S4n"
|
188143
188293
|
}
|
188144
188294
|
}
|
188145
188295
|
}
|
@@ -188213,7 +188363,7 @@ module.exports={
|
|
188213
188363
|
"members": {
|
188214
188364
|
"CertificateIdentifier": {},
|
188215
188365
|
"Filters": {
|
188216
|
-
"shape": "
|
188366
|
+
"shape": "S5u"
|
188217
188367
|
},
|
188218
188368
|
"MaxRecords": {
|
188219
188369
|
"type": "integer"
|
@@ -188228,7 +188378,7 @@ module.exports={
|
|
188228
188378
|
"Certificates": {
|
188229
188379
|
"type": "list",
|
188230
188380
|
"member": {
|
188231
|
-
"shape": "
|
188381
|
+
"shape": "S5z",
|
188232
188382
|
"locationName": "Certificate"
|
188233
188383
|
}
|
188234
188384
|
},
|
@@ -188246,7 +188396,7 @@ module.exports={
|
|
188246
188396
|
"DBClusterIdentifier": {},
|
188247
188397
|
"BacktrackIdentifier": {},
|
188248
188398
|
"Filters": {
|
188249
|
-
"shape": "
|
188399
|
+
"shape": "S5u"
|
188250
188400
|
},
|
188251
188401
|
"MaxRecords": {
|
188252
188402
|
"type": "integer"
|
@@ -188276,7 +188426,7 @@ module.exports={
|
|
188276
188426
|
"DBClusterIdentifier": {},
|
188277
188427
|
"DBClusterEndpointIdentifier": {},
|
188278
188428
|
"Filters": {
|
188279
|
-
"shape": "
|
188429
|
+
"shape": "S5u"
|
188280
188430
|
},
|
188281
188431
|
"MaxRecords": {
|
188282
188432
|
"type": "integer"
|
@@ -188305,7 +188455,7 @@ module.exports={
|
|
188305
188455
|
"members": {
|
188306
188456
|
"DBClusterParameterGroupName": {},
|
188307
188457
|
"Filters": {
|
188308
|
-
"shape": "
|
188458
|
+
"shape": "S5u"
|
188309
188459
|
},
|
188310
188460
|
"MaxRecords": {
|
188311
188461
|
"type": "integer"
|
@@ -188338,7 +188488,7 @@ module.exports={
|
|
188338
188488
|
"DBClusterParameterGroupName": {},
|
188339
188489
|
"Source": {},
|
188340
188490
|
"Filters": {
|
188341
|
-
"shape": "
|
188491
|
+
"shape": "S5u"
|
188342
188492
|
},
|
188343
188493
|
"MaxRecords": {
|
188344
188494
|
"type": "integer"
|
@@ -188351,7 +188501,7 @@ module.exports={
|
|
188351
188501
|
"type": "structure",
|
188352
188502
|
"members": {
|
188353
188503
|
"Parameters": {
|
188354
|
-
"shape": "
|
188504
|
+
"shape": "S6b"
|
188355
188505
|
},
|
188356
188506
|
"Marker": {}
|
188357
188507
|
}
|
@@ -188372,7 +188522,7 @@ module.exports={
|
|
188372
188522
|
"type": "structure",
|
188373
188523
|
"members": {
|
188374
188524
|
"DBClusterSnapshotAttributesResult": {
|
188375
|
-
"shape": "
|
188525
|
+
"shape": "S6g"
|
188376
188526
|
}
|
188377
188527
|
}
|
188378
188528
|
}
|
@@ -188385,7 +188535,7 @@ module.exports={
|
|
188385
188535
|
"DBClusterSnapshotIdentifier": {},
|
188386
188536
|
"SnapshotType": {},
|
188387
188537
|
"Filters": {
|
188388
|
-
"shape": "
|
188538
|
+
"shape": "S5u"
|
188389
188539
|
},
|
188390
188540
|
"MaxRecords": {
|
188391
188541
|
"type": "integer"
|
@@ -188420,7 +188570,7 @@ module.exports={
|
|
188420
188570
|
"members": {
|
188421
188571
|
"DBClusterIdentifier": {},
|
188422
188572
|
"Filters": {
|
188423
|
-
"shape": "
|
188573
|
+
"shape": "S5u"
|
188424
188574
|
},
|
188425
188575
|
"MaxRecords": {
|
188426
188576
|
"type": "integer"
|
@@ -188454,7 +188604,7 @@ module.exports={
|
|
188454
188604
|
"EngineVersion": {},
|
188455
188605
|
"DBParameterGroupFamily": {},
|
188456
188606
|
"Filters": {
|
188457
|
-
"shape": "
|
188607
|
+
"shape": "S5u"
|
188458
188608
|
},
|
188459
188609
|
"MaxRecords": {
|
188460
188610
|
"type": "integer"
|
@@ -188496,7 +188646,7 @@ module.exports={
|
|
188496
188646
|
"DbiResourceId": {},
|
188497
188647
|
"DBInstanceIdentifier": {},
|
188498
188648
|
"Filters": {
|
188499
|
-
"shape": "
|
188649
|
+
"shape": "S5u"
|
188500
188650
|
},
|
188501
188651
|
"MaxRecords": {
|
188502
188652
|
"type": "integer"
|
@@ -188513,7 +188663,7 @@ module.exports={
|
|
188513
188663
|
"DBInstanceAutomatedBackups": {
|
188514
188664
|
"type": "list",
|
188515
188665
|
"member": {
|
188516
|
-
"shape": "
|
188666
|
+
"shape": "S56",
|
188517
188667
|
"locationName": "DBInstanceAutomatedBackup"
|
188518
188668
|
}
|
188519
188669
|
}
|
@@ -188526,7 +188676,7 @@ module.exports={
|
|
188526
188676
|
"members": {
|
188527
188677
|
"DBInstanceIdentifier": {},
|
188528
188678
|
"Filters": {
|
188529
|
-
"shape": "
|
188679
|
+
"shape": "S5u"
|
188530
188680
|
},
|
188531
188681
|
"MaxRecords": {
|
188532
188682
|
"type": "integer"
|
@@ -188565,7 +188715,7 @@ module.exports={
|
|
188565
188715
|
"type": "long"
|
188566
188716
|
},
|
188567
188717
|
"Filters": {
|
188568
|
-
"shape": "
|
188718
|
+
"shape": "S5u"
|
188569
188719
|
},
|
188570
188720
|
"MaxRecords": {
|
188571
188721
|
"type": "integer"
|
@@ -188603,7 +188753,7 @@ module.exports={
|
|
188603
188753
|
"members": {
|
188604
188754
|
"DBParameterGroupName": {},
|
188605
188755
|
"Filters": {
|
188606
|
-
"shape": "
|
188756
|
+
"shape": "S5u"
|
188607
188757
|
},
|
188608
188758
|
"MaxRecords": {
|
188609
188759
|
"type": "integer"
|
@@ -188636,7 +188786,7 @@ module.exports={
|
|
188636
188786
|
"DBParameterGroupName": {},
|
188637
188787
|
"Source": {},
|
188638
188788
|
"Filters": {
|
188639
|
-
"shape": "
|
188789
|
+
"shape": "S5u"
|
188640
188790
|
},
|
188641
188791
|
"MaxRecords": {
|
188642
188792
|
"type": "integer"
|
@@ -188649,7 +188799,7 @@ module.exports={
|
|
188649
188799
|
"type": "structure",
|
188650
188800
|
"members": {
|
188651
188801
|
"Parameters": {
|
188652
|
-
"shape": "
|
188802
|
+
"shape": "S6b"
|
188653
188803
|
},
|
188654
188804
|
"Marker": {}
|
188655
188805
|
}
|
@@ -188661,7 +188811,7 @@ module.exports={
|
|
188661
188811
|
"members": {
|
188662
188812
|
"DBProxyName": {},
|
188663
188813
|
"Filters": {
|
188664
|
-
"shape": "
|
188814
|
+
"shape": "S5u"
|
188665
188815
|
},
|
188666
188816
|
"Marker": {},
|
188667
188817
|
"MaxRecords": {
|
@@ -188676,7 +188826,7 @@ module.exports={
|
|
188676
188826
|
"DBProxies": {
|
188677
188827
|
"type": "list",
|
188678
188828
|
"member": {
|
188679
|
-
"shape": "
|
188829
|
+
"shape": "S41"
|
188680
188830
|
}
|
188681
188831
|
},
|
188682
188832
|
"Marker": {}
|
@@ -188690,7 +188840,7 @@ module.exports={
|
|
188690
188840
|
"DBProxyName": {},
|
188691
188841
|
"DBProxyEndpointName": {},
|
188692
188842
|
"Filters": {
|
188693
|
-
"shape": "
|
188843
|
+
"shape": "S5u"
|
188694
188844
|
},
|
188695
188845
|
"Marker": {},
|
188696
188846
|
"MaxRecords": {
|
@@ -188705,7 +188855,7 @@ module.exports={
|
|
188705
188855
|
"DBProxyEndpoints": {
|
188706
188856
|
"type": "list",
|
188707
188857
|
"member": {
|
188708
|
-
"shape": "
|
188858
|
+
"shape": "S4a"
|
188709
188859
|
}
|
188710
188860
|
},
|
188711
188861
|
"Marker": {}
|
@@ -188722,7 +188872,7 @@ module.exports={
|
|
188722
188872
|
"DBProxyName": {},
|
188723
188873
|
"TargetGroupName": {},
|
188724
188874
|
"Filters": {
|
188725
|
-
"shape": "
|
188875
|
+
"shape": "S5u"
|
188726
188876
|
},
|
188727
188877
|
"Marker": {},
|
188728
188878
|
"MaxRecords": {
|
@@ -188737,7 +188887,7 @@ module.exports={
|
|
188737
188887
|
"TargetGroups": {
|
188738
188888
|
"type": "list",
|
188739
188889
|
"member": {
|
188740
|
-
"shape": "
|
188890
|
+
"shape": "S7i"
|
188741
188891
|
}
|
188742
188892
|
},
|
188743
188893
|
"Marker": {}
|
@@ -188754,7 +188904,7 @@ module.exports={
|
|
188754
188904
|
"DBProxyName": {},
|
188755
188905
|
"TargetGroupName": {},
|
188756
188906
|
"Filters": {
|
188757
|
-
"shape": "
|
188907
|
+
"shape": "S5u"
|
188758
188908
|
},
|
188759
188909
|
"Marker": {},
|
188760
188910
|
"MaxRecords": {
|
@@ -188767,7 +188917,7 @@ module.exports={
|
|
188767
188917
|
"type": "structure",
|
188768
188918
|
"members": {
|
188769
188919
|
"Targets": {
|
188770
|
-
"shape": "
|
188920
|
+
"shape": "S7m"
|
188771
188921
|
},
|
188772
188922
|
"Marker": {}
|
188773
188923
|
}
|
@@ -188779,7 +188929,7 @@ module.exports={
|
|
188779
188929
|
"members": {
|
188780
188930
|
"DBSecurityGroupName": {},
|
188781
188931
|
"Filters": {
|
188782
|
-
"shape": "
|
188932
|
+
"shape": "S5u"
|
188783
188933
|
},
|
188784
188934
|
"MaxRecords": {
|
188785
188935
|
"type": "integer"
|
@@ -188817,7 +188967,7 @@ module.exports={
|
|
188817
188967
|
"type": "structure",
|
188818
188968
|
"members": {
|
188819
188969
|
"DBSnapshotAttributesResult": {
|
188820
|
-
"shape": "
|
188970
|
+
"shape": "S7y"
|
188821
188971
|
}
|
188822
188972
|
}
|
188823
188973
|
}
|
@@ -188830,7 +188980,7 @@ module.exports={
|
|
188830
188980
|
"DBSnapshotIdentifier": {},
|
188831
188981
|
"SnapshotType": {},
|
188832
188982
|
"Filters": {
|
188833
|
-
"shape": "
|
188983
|
+
"shape": "S5u"
|
188834
188984
|
},
|
188835
188985
|
"MaxRecords": {
|
188836
188986
|
"type": "integer"
|
@@ -188866,7 +189016,7 @@ module.exports={
|
|
188866
189016
|
"members": {
|
188867
189017
|
"DBSubnetGroupName": {},
|
188868
189018
|
"Filters": {
|
188869
|
-
"shape": "
|
189019
|
+
"shape": "S5u"
|
188870
189020
|
},
|
188871
189021
|
"MaxRecords": {
|
188872
189022
|
"type": "integer"
|
@@ -188898,7 +189048,7 @@ module.exports={
|
|
188898
189048
|
"members": {
|
188899
189049
|
"DBParameterGroupFamily": {},
|
188900
189050
|
"Filters": {
|
188901
|
-
"shape": "
|
189051
|
+
"shape": "S5u"
|
188902
189052
|
},
|
188903
189053
|
"MaxRecords": {
|
188904
189054
|
"type": "integer"
|
@@ -188911,7 +189061,7 @@ module.exports={
|
|
188911
189061
|
"type": "structure",
|
188912
189062
|
"members": {
|
188913
189063
|
"EngineDefaults": {
|
188914
|
-
"shape": "
|
189064
|
+
"shape": "S89"
|
188915
189065
|
}
|
188916
189066
|
}
|
188917
189067
|
}
|
@@ -188925,7 +189075,7 @@ module.exports={
|
|
188925
189075
|
"members": {
|
188926
189076
|
"DBParameterGroupFamily": {},
|
188927
189077
|
"Filters": {
|
188928
|
-
"shape": "
|
189078
|
+
"shape": "S5u"
|
188929
189079
|
},
|
188930
189080
|
"MaxRecords": {
|
188931
189081
|
"type": "integer"
|
@@ -188938,7 +189088,7 @@ module.exports={
|
|
188938
189088
|
"type": "structure",
|
188939
189089
|
"members": {
|
188940
189090
|
"EngineDefaults": {
|
188941
|
-
"shape": "
|
189091
|
+
"shape": "S89"
|
188942
189092
|
}
|
188943
189093
|
}
|
188944
189094
|
}
|
@@ -188949,7 +189099,7 @@ module.exports={
|
|
188949
189099
|
"members": {
|
188950
189100
|
"SourceType": {},
|
188951
189101
|
"Filters": {
|
188952
|
-
"shape": "
|
189102
|
+
"shape": "S5u"
|
188953
189103
|
}
|
188954
189104
|
}
|
188955
189105
|
},
|
@@ -188980,7 +189130,7 @@ module.exports={
|
|
188980
189130
|
"members": {
|
188981
189131
|
"SubscriptionName": {},
|
188982
189132
|
"Filters": {
|
188983
|
-
"shape": "
|
189133
|
+
"shape": "S5u"
|
188984
189134
|
},
|
188985
189135
|
"MaxRecords": {
|
188986
189136
|
"type": "integer"
|
@@ -189022,7 +189172,7 @@ module.exports={
|
|
189022
189172
|
"shape": "S8"
|
189023
189173
|
},
|
189024
189174
|
"Filters": {
|
189025
|
-
"shape": "
|
189175
|
+
"shape": "S5u"
|
189026
189176
|
},
|
189027
189177
|
"MaxRecords": {
|
189028
189178
|
"type": "integer"
|
@@ -189064,7 +189214,7 @@ module.exports={
|
|
189064
189214
|
"ExportTaskIdentifier": {},
|
189065
189215
|
"SourceArn": {},
|
189066
189216
|
"Filters": {
|
189067
|
-
"shape": "
|
189217
|
+
"shape": "S5u"
|
189068
189218
|
},
|
189069
189219
|
"Marker": {},
|
189070
189220
|
"MaxRecords": {
|
@@ -189093,7 +189243,7 @@ module.exports={
|
|
189093
189243
|
"members": {
|
189094
189244
|
"GlobalClusterIdentifier": {},
|
189095
189245
|
"Filters": {
|
189096
|
-
"shape": "
|
189246
|
+
"shape": "S5u"
|
189097
189247
|
},
|
189098
189248
|
"MaxRecords": {
|
189099
189249
|
"type": "integer"
|
@@ -189109,7 +189259,7 @@ module.exports={
|
|
189109
189259
|
"GlobalClusters": {
|
189110
189260
|
"type": "list",
|
189111
189261
|
"member": {
|
189112
|
-
"shape": "
|
189262
|
+
"shape": "S4n",
|
189113
189263
|
"locationName": "GlobalClusterMember"
|
189114
189264
|
}
|
189115
189265
|
}
|
@@ -189126,7 +189276,7 @@ module.exports={
|
|
189126
189276
|
"EngineName": {},
|
189127
189277
|
"MajorEngineVersion": {},
|
189128
189278
|
"Filters": {
|
189129
|
-
"shape": "
|
189279
|
+
"shape": "S5u"
|
189130
189280
|
},
|
189131
189281
|
"MaxRecords": {
|
189132
189282
|
"type": "integer"
|
@@ -189239,7 +189389,7 @@ module.exports={
|
|
189239
189389
|
"members": {
|
189240
189390
|
"OptionGroupName": {},
|
189241
189391
|
"Filters": {
|
189242
|
-
"shape": "
|
189392
|
+
"shape": "S5u"
|
189243
189393
|
},
|
189244
189394
|
"Marker": {},
|
189245
189395
|
"MaxRecords": {
|
@@ -189280,7 +189430,7 @@ module.exports={
|
|
189280
189430
|
"type": "boolean"
|
189281
189431
|
},
|
189282
189432
|
"Filters": {
|
189283
|
-
"shape": "
|
189433
|
+
"shape": "S5u"
|
189284
189434
|
},
|
189285
189435
|
"MaxRecords": {
|
189286
189436
|
"type": "integer"
|
@@ -189354,7 +189504,7 @@ module.exports={
|
|
189354
189504
|
"type": "double"
|
189355
189505
|
},
|
189356
189506
|
"AvailableProcessorFeatures": {
|
189357
|
-
"shape": "
|
189507
|
+
"shape": "S9e"
|
189358
189508
|
},
|
189359
189509
|
"SupportedEngineModes": {
|
189360
189510
|
"shape": "S21"
|
@@ -189395,7 +189545,7 @@ module.exports={
|
|
189395
189545
|
"members": {
|
189396
189546
|
"ResourceIdentifier": {},
|
189397
189547
|
"Filters": {
|
189398
|
-
"shape": "
|
189548
|
+
"shape": "S5u"
|
189399
189549
|
},
|
189400
189550
|
"Marker": {},
|
189401
189551
|
"MaxRecords": {
|
@@ -189433,7 +189583,7 @@ module.exports={
|
|
189433
189583
|
},
|
189434
189584
|
"LeaseId": {},
|
189435
189585
|
"Filters": {
|
189436
|
-
"shape": "
|
189586
|
+
"shape": "S5u"
|
189437
189587
|
},
|
189438
189588
|
"MaxRecords": {
|
189439
189589
|
"type": "integer"
|
@@ -189449,7 +189599,7 @@ module.exports={
|
|
189449
189599
|
"ReservedDBInstances": {
|
189450
189600
|
"type": "list",
|
189451
189601
|
"member": {
|
189452
|
-
"shape": "
|
189602
|
+
"shape": "S9n",
|
189453
189603
|
"locationName": "ReservedDBInstance"
|
189454
189604
|
}
|
189455
189605
|
}
|
@@ -189469,7 +189619,7 @@ module.exports={
|
|
189469
189619
|
"type": "boolean"
|
189470
189620
|
},
|
189471
189621
|
"Filters": {
|
189472
|
-
"shape": "
|
189622
|
+
"shape": "S5u"
|
189473
189623
|
},
|
189474
189624
|
"MaxRecords": {
|
189475
189625
|
"type": "integer"
|
@@ -189506,7 +189656,7 @@ module.exports={
|
|
189506
189656
|
"type": "boolean"
|
189507
189657
|
},
|
189508
189658
|
"RecurringCharges": {
|
189509
|
-
"shape": "
|
189659
|
+
"shape": "S9p"
|
189510
189660
|
}
|
189511
189661
|
},
|
189512
189662
|
"wrapper": true
|
@@ -189525,7 +189675,7 @@ module.exports={
|
|
189525
189675
|
},
|
189526
189676
|
"Marker": {},
|
189527
189677
|
"Filters": {
|
189528
|
-
"shape": "
|
189678
|
+
"shape": "S5u"
|
189529
189679
|
}
|
189530
189680
|
}
|
189531
189681
|
},
|
@@ -189577,10 +189727,10 @@ module.exports={
|
|
189577
189727
|
"members": {
|
189578
189728
|
"StorageType": {},
|
189579
189729
|
"StorageSize": {
|
189580
|
-
"shape": "
|
189730
|
+
"shape": "Sa4"
|
189581
189731
|
},
|
189582
189732
|
"ProvisionedIops": {
|
189583
|
-
"shape": "
|
189733
|
+
"shape": "Sa4"
|
189584
189734
|
},
|
189585
189735
|
"IopsToStorageRatio": {
|
189586
189736
|
"type": "list",
|
@@ -189604,7 +189754,7 @@ module.exports={
|
|
189604
189754
|
}
|
189605
189755
|
},
|
189606
189756
|
"ValidProcessorFeatures": {
|
189607
|
-
"shape": "
|
189757
|
+
"shape": "S9e"
|
189608
189758
|
}
|
189609
189759
|
},
|
189610
189760
|
"wrapper": true
|
@@ -189678,7 +189828,7 @@ module.exports={
|
|
189678
189828
|
"type": "structure",
|
189679
189829
|
"members": {
|
189680
189830
|
"GlobalCluster": {
|
189681
|
-
"shape": "
|
189831
|
+
"shape": "S4n"
|
189682
189832
|
}
|
189683
189833
|
}
|
189684
189834
|
}
|
@@ -189692,7 +189842,7 @@ module.exports={
|
|
189692
189842
|
"members": {
|
189693
189843
|
"ResourceName": {},
|
189694
189844
|
"Filters": {
|
189695
|
-
"shape": "
|
189845
|
+
"shape": "S5u"
|
189696
189846
|
}
|
189697
189847
|
}
|
189698
189848
|
},
|
@@ -189706,6 +189856,29 @@ module.exports={
|
|
189706
189856
|
}
|
189707
189857
|
}
|
189708
189858
|
},
|
189859
|
+
"ModifyActivityStream": {
|
189860
|
+
"input": {
|
189861
|
+
"type": "structure",
|
189862
|
+
"members": {
|
189863
|
+
"ResourceArn": {},
|
189864
|
+
"AuditPolicyState": {}
|
189865
|
+
}
|
189866
|
+
},
|
189867
|
+
"output": {
|
189868
|
+
"resultWrapper": "ModifyActivityStreamResult",
|
189869
|
+
"type": "structure",
|
189870
|
+
"members": {
|
189871
|
+
"KmsKeyId": {},
|
189872
|
+
"KinesisStreamName": {},
|
189873
|
+
"Status": {},
|
189874
|
+
"Mode": {},
|
189875
|
+
"EngineNativeAuditFieldsIncluded": {
|
189876
|
+
"type": "boolean"
|
189877
|
+
},
|
189878
|
+
"PolicyStatus": {}
|
189879
|
+
}
|
189880
|
+
}
|
189881
|
+
},
|
189709
189882
|
"ModifyCertificates": {
|
189710
189883
|
"input": {
|
189711
189884
|
"type": "structure",
|
@@ -189721,7 +189894,7 @@ module.exports={
|
|
189721
189894
|
"type": "structure",
|
189722
189895
|
"members": {
|
189723
189896
|
"Certificate": {
|
189724
|
-
"shape": "
|
189897
|
+
"shape": "S5z"
|
189725
189898
|
}
|
189726
189899
|
}
|
189727
189900
|
}
|
@@ -189813,7 +189986,7 @@ module.exports={
|
|
189813
189986
|
"type": "long"
|
189814
189987
|
},
|
189815
189988
|
"CloudwatchLogsExportConfiguration": {
|
189816
|
-
"shape": "
|
189989
|
+
"shape": "Sas"
|
189817
189990
|
},
|
189818
189991
|
"EngineVersion": {},
|
189819
189992
|
"AllowMajorVersionUpgrade": {
|
@@ -189906,12 +190079,12 @@ module.exports={
|
|
189906
190079
|
"members": {
|
189907
190080
|
"DBClusterParameterGroupName": {},
|
189908
190081
|
"Parameters": {
|
189909
|
-
"shape": "
|
190082
|
+
"shape": "S6b"
|
189910
190083
|
}
|
189911
190084
|
}
|
189912
190085
|
},
|
189913
190086
|
"output": {
|
189914
|
-
"shape": "
|
190087
|
+
"shape": "Saw",
|
189915
190088
|
"resultWrapper": "ModifyDBClusterParameterGroupResult"
|
189916
190089
|
}
|
189917
190090
|
},
|
@@ -189926,10 +190099,10 @@ module.exports={
|
|
189926
190099
|
"DBClusterSnapshotIdentifier": {},
|
189927
190100
|
"AttributeName": {},
|
189928
190101
|
"ValuesToAdd": {
|
189929
|
-
"shape": "
|
190102
|
+
"shape": "S6j"
|
189930
190103
|
},
|
189931
190104
|
"ValuesToRemove": {
|
189932
|
-
"shape": "
|
190105
|
+
"shape": "S6j"
|
189933
190106
|
}
|
189934
190107
|
}
|
189935
190108
|
},
|
@@ -189938,7 +190111,7 @@ module.exports={
|
|
189938
190111
|
"type": "structure",
|
189939
190112
|
"members": {
|
189940
190113
|
"DBClusterSnapshotAttributesResult": {
|
189941
|
-
"shape": "
|
190114
|
+
"shape": "S6g"
|
189942
190115
|
}
|
189943
190116
|
}
|
189944
190117
|
}
|
@@ -190021,7 +190194,7 @@ module.exports={
|
|
190021
190194
|
"type": "integer"
|
190022
190195
|
},
|
190023
190196
|
"CloudwatchLogsExportConfiguration": {
|
190024
|
-
"shape": "
|
190197
|
+
"shape": "Sas"
|
190025
190198
|
},
|
190026
190199
|
"ProcessorFeatures": {
|
190027
190200
|
"shape": "S1b"
|
@@ -190070,12 +190243,12 @@ module.exports={
|
|
190070
190243
|
"members": {
|
190071
190244
|
"DBParameterGroupName": {},
|
190072
190245
|
"Parameters": {
|
190073
|
-
"shape": "
|
190246
|
+
"shape": "S6b"
|
190074
190247
|
}
|
190075
190248
|
}
|
190076
190249
|
},
|
190077
190250
|
"output": {
|
190078
|
-
"shape": "
|
190251
|
+
"shape": "Sb3",
|
190079
190252
|
"resultWrapper": "ModifyDBParameterGroupResult"
|
190080
190253
|
}
|
190081
190254
|
},
|
@@ -190089,7 +190262,7 @@ module.exports={
|
|
190089
190262
|
"DBProxyName": {},
|
190090
190263
|
"NewDBProxyName": {},
|
190091
190264
|
"Auth": {
|
190092
|
-
"shape": "
|
190265
|
+
"shape": "S3w"
|
190093
190266
|
},
|
190094
190267
|
"RequireTLS": {
|
190095
190268
|
"type": "boolean"
|
@@ -190111,7 +190284,7 @@ module.exports={
|
|
190111
190284
|
"type": "structure",
|
190112
190285
|
"members": {
|
190113
190286
|
"DBProxy": {
|
190114
|
-
"shape": "
|
190287
|
+
"shape": "S41"
|
190115
190288
|
}
|
190116
190289
|
}
|
190117
190290
|
}
|
@@ -190135,7 +190308,7 @@ module.exports={
|
|
190135
190308
|
"type": "structure",
|
190136
190309
|
"members": {
|
190137
190310
|
"DBProxyEndpoint": {
|
190138
|
-
"shape": "
|
190311
|
+
"shape": "S4a"
|
190139
190312
|
}
|
190140
190313
|
}
|
190141
190314
|
}
|
@@ -190176,7 +190349,7 @@ module.exports={
|
|
190176
190349
|
"type": "structure",
|
190177
190350
|
"members": {
|
190178
190351
|
"DBProxyTargetGroup": {
|
190179
|
-
"shape": "
|
190352
|
+
"shape": "S7i"
|
190180
190353
|
}
|
190181
190354
|
}
|
190182
190355
|
}
|
@@ -190214,10 +190387,10 @@ module.exports={
|
|
190214
190387
|
"DBSnapshotIdentifier": {},
|
190215
190388
|
"AttributeName": {},
|
190216
190389
|
"ValuesToAdd": {
|
190217
|
-
"shape": "
|
190390
|
+
"shape": "S6j"
|
190218
190391
|
},
|
190219
190392
|
"ValuesToRemove": {
|
190220
|
-
"shape": "
|
190393
|
+
"shape": "S6j"
|
190221
190394
|
}
|
190222
190395
|
}
|
190223
190396
|
},
|
@@ -190226,7 +190399,7 @@ module.exports={
|
|
190226
190399
|
"type": "structure",
|
190227
190400
|
"members": {
|
190228
190401
|
"DBSnapshotAttributesResult": {
|
190229
|
-
"shape": "
|
190402
|
+
"shape": "S7y"
|
190230
190403
|
}
|
190231
190404
|
}
|
190232
190405
|
}
|
@@ -190242,7 +190415,7 @@ module.exports={
|
|
190242
190415
|
"DBSubnetGroupName": {},
|
190243
190416
|
"DBSubnetGroupDescription": {},
|
190244
190417
|
"SubnetIds": {
|
190245
|
-
"shape": "
|
190418
|
+
"shape": "S4h"
|
190246
190419
|
}
|
190247
190420
|
}
|
190248
190421
|
},
|
@@ -190304,7 +190477,7 @@ module.exports={
|
|
190304
190477
|
"type": "structure",
|
190305
190478
|
"members": {
|
190306
190479
|
"GlobalCluster": {
|
190307
|
-
"shape": "
|
190480
|
+
"shape": "S4n"
|
190308
190481
|
}
|
190309
190482
|
}
|
190310
190483
|
}
|
@@ -190432,7 +190605,7 @@ module.exports={
|
|
190432
190605
|
"type": "structure",
|
190433
190606
|
"members": {
|
190434
190607
|
"ReservedDBInstance": {
|
190435
|
-
"shape": "
|
190608
|
+
"shape": "S9n"
|
190436
190609
|
}
|
190437
190610
|
}
|
190438
190611
|
}
|
@@ -190502,7 +190675,7 @@ module.exports={
|
|
190502
190675
|
"type": "structure",
|
190503
190676
|
"members": {
|
190504
190677
|
"DBProxyTargets": {
|
190505
|
-
"shape": "
|
190678
|
+
"shape": "S7m"
|
190506
190679
|
}
|
190507
190680
|
}
|
190508
190681
|
}
|
@@ -190520,7 +190693,7 @@ module.exports={
|
|
190520
190693
|
"type": "structure",
|
190521
190694
|
"members": {
|
190522
190695
|
"GlobalCluster": {
|
190523
|
-
"shape": "
|
190696
|
+
"shape": "S4n"
|
190524
190697
|
}
|
190525
190698
|
}
|
190526
190699
|
}
|
@@ -190604,12 +190777,12 @@ module.exports={
|
|
190604
190777
|
"type": "boolean"
|
190605
190778
|
},
|
190606
190779
|
"Parameters": {
|
190607
|
-
"shape": "
|
190780
|
+
"shape": "S6b"
|
190608
190781
|
}
|
190609
190782
|
}
|
190610
190783
|
},
|
190611
190784
|
"output": {
|
190612
|
-
"shape": "
|
190785
|
+
"shape": "Saw",
|
190613
190786
|
"resultWrapper": "ResetDBClusterParameterGroupResult"
|
190614
190787
|
}
|
190615
190788
|
},
|
@@ -190625,12 +190798,12 @@ module.exports={
|
|
190625
190798
|
"type": "boolean"
|
190626
190799
|
},
|
190627
190800
|
"Parameters": {
|
190628
|
-
"shape": "
|
190801
|
+
"shape": "S6b"
|
190629
190802
|
}
|
190630
190803
|
}
|
190631
190804
|
},
|
190632
190805
|
"output": {
|
190633
|
-
"shape": "
|
190806
|
+
"shape": "Sb3",
|
190634
190807
|
"resultWrapper": "ResetDBParameterGroupResult"
|
190635
190808
|
}
|
190636
190809
|
},
|
@@ -191267,7 +191440,7 @@ module.exports={
|
|
191267
191440
|
"type": "structure",
|
191268
191441
|
"members": {
|
191269
191442
|
"DBInstanceAutomatedBackup": {
|
191270
|
-
"shape": "
|
191443
|
+
"shape": "S56"
|
191271
191444
|
}
|
191272
191445
|
}
|
191273
191446
|
}
|
@@ -191378,7 +191551,7 @@ module.exports={
|
|
191378
191551
|
"type": "structure",
|
191379
191552
|
"members": {
|
191380
191553
|
"DBInstanceAutomatedBackup": {
|
191381
|
-
"shape": "
|
191554
|
+
"shape": "S56"
|
191382
191555
|
}
|
191383
191556
|
}
|
191384
191557
|
}
|
@@ -192440,7 +192613,8 @@ module.exports={
|
|
192440
192613
|
},
|
192441
192614
|
"CustomIamInstanceProfile": {},
|
192442
192615
|
"BackupTarget": {},
|
192443
|
-
"NetworkType": {}
|
192616
|
+
"NetworkType": {},
|
192617
|
+
"ActivityStreamPolicyStatus": {}
|
192444
192618
|
},
|
192445
192619
|
"wrapper": true
|
192446
192620
|
},
|
@@ -192505,7 +192679,7 @@ module.exports={
|
|
192505
192679
|
}
|
192506
192680
|
}
|
192507
192681
|
},
|
192508
|
-
"
|
192682
|
+
"S3w": {
|
192509
192683
|
"type": "list",
|
192510
192684
|
"member": {
|
192511
192685
|
"type": "structure",
|
@@ -192518,7 +192692,7 @@ module.exports={
|
|
192518
192692
|
}
|
192519
192693
|
}
|
192520
192694
|
},
|
192521
|
-
"
|
192695
|
+
"S41": {
|
192522
192696
|
"type": "structure",
|
192523
192697
|
"members": {
|
192524
192698
|
"DBProxyName": {},
|
@@ -192564,7 +192738,7 @@ module.exports={
|
|
192564
192738
|
}
|
192565
192739
|
}
|
192566
192740
|
},
|
192567
|
-
"
|
192741
|
+
"S4a": {
|
192568
192742
|
"type": "structure",
|
192569
192743
|
"members": {
|
192570
192744
|
"DBProxyEndpointName": {},
|
@@ -192588,13 +192762,13 @@ module.exports={
|
|
192588
192762
|
}
|
192589
192763
|
}
|
192590
192764
|
},
|
192591
|
-
"
|
192765
|
+
"S4h": {
|
192592
192766
|
"type": "list",
|
192593
192767
|
"member": {
|
192594
192768
|
"locationName": "SubnetIdentifier"
|
192595
192769
|
}
|
192596
192770
|
},
|
192597
|
-
"
|
192771
|
+
"S4n": {
|
192598
192772
|
"type": "structure",
|
192599
192773
|
"members": {
|
192600
192774
|
"GlobalClusterIdentifier": {},
|
@@ -192641,7 +192815,7 @@ module.exports={
|
|
192641
192815
|
},
|
192642
192816
|
"wrapper": true
|
192643
192817
|
},
|
192644
|
-
"
|
192818
|
+
"S56": {
|
192645
192819
|
"type": "structure",
|
192646
192820
|
"members": {
|
192647
192821
|
"DBInstanceArn": {},
|
@@ -192700,7 +192874,7 @@ module.exports={
|
|
192700
192874
|
},
|
192701
192875
|
"wrapper": true
|
192702
192876
|
},
|
192703
|
-
"
|
192877
|
+
"S5u": {
|
192704
192878
|
"type": "list",
|
192705
192879
|
"member": {
|
192706
192880
|
"locationName": "Filter",
|
@@ -192720,7 +192894,7 @@ module.exports={
|
|
192720
192894
|
}
|
192721
192895
|
}
|
192722
192896
|
},
|
192723
|
-
"
|
192897
|
+
"S5z": {
|
192724
192898
|
"type": "structure",
|
192725
192899
|
"members": {
|
192726
192900
|
"CertificateIdentifier": {},
|
@@ -192742,7 +192916,7 @@ module.exports={
|
|
192742
192916
|
},
|
192743
192917
|
"wrapper": true
|
192744
192918
|
},
|
192745
|
-
"
|
192919
|
+
"S6b": {
|
192746
192920
|
"type": "list",
|
192747
192921
|
"member": {
|
192748
192922
|
"locationName": "Parameter",
|
@@ -192766,7 +192940,7 @@ module.exports={
|
|
192766
192940
|
}
|
192767
192941
|
}
|
192768
192942
|
},
|
192769
|
-
"
|
192943
|
+
"S6g": {
|
192770
192944
|
"type": "structure",
|
192771
192945
|
"members": {
|
192772
192946
|
"DBClusterSnapshotIdentifier": {},
|
@@ -192778,7 +192952,7 @@ module.exports={
|
|
192778
192952
|
"members": {
|
192779
192953
|
"AttributeName": {},
|
192780
192954
|
"AttributeValues": {
|
192781
|
-
"shape": "
|
192955
|
+
"shape": "S6j"
|
192782
192956
|
}
|
192783
192957
|
}
|
192784
192958
|
}
|
@@ -192786,13 +192960,13 @@ module.exports={
|
|
192786
192960
|
},
|
192787
192961
|
"wrapper": true
|
192788
192962
|
},
|
192789
|
-
"
|
192963
|
+
"S6j": {
|
192790
192964
|
"type": "list",
|
192791
192965
|
"member": {
|
192792
192966
|
"locationName": "AttributeValue"
|
192793
192967
|
}
|
192794
192968
|
},
|
192795
|
-
"
|
192969
|
+
"S7i": {
|
192796
192970
|
"type": "structure",
|
192797
192971
|
"members": {
|
192798
192972
|
"DBProxyName": {},
|
@@ -192828,7 +193002,7 @@ module.exports={
|
|
192828
193002
|
}
|
192829
193003
|
}
|
192830
193004
|
},
|
192831
|
-
"
|
193005
|
+
"S7m": {
|
192832
193006
|
"type": "list",
|
192833
193007
|
"member": {
|
192834
193008
|
"type": "structure",
|
@@ -192853,7 +193027,7 @@ module.exports={
|
|
192853
193027
|
}
|
192854
193028
|
}
|
192855
193029
|
},
|
192856
|
-
"
|
193030
|
+
"S7y": {
|
192857
193031
|
"type": "structure",
|
192858
193032
|
"members": {
|
192859
193033
|
"DBSnapshotIdentifier": {},
|
@@ -192865,7 +193039,7 @@ module.exports={
|
|
192865
193039
|
"members": {
|
192866
193040
|
"AttributeName": {},
|
192867
193041
|
"AttributeValues": {
|
192868
|
-
"shape": "
|
193042
|
+
"shape": "S6j"
|
192869
193043
|
}
|
192870
193044
|
},
|
192871
193045
|
"wrapper": true
|
@@ -192874,18 +193048,18 @@ module.exports={
|
|
192874
193048
|
},
|
192875
193049
|
"wrapper": true
|
192876
193050
|
},
|
192877
|
-
"
|
193051
|
+
"S89": {
|
192878
193052
|
"type": "structure",
|
192879
193053
|
"members": {
|
192880
193054
|
"DBParameterGroupFamily": {},
|
192881
193055
|
"Marker": {},
|
192882
193056
|
"Parameters": {
|
192883
|
-
"shape": "
|
193057
|
+
"shape": "S6b"
|
192884
193058
|
}
|
192885
193059
|
},
|
192886
193060
|
"wrapper": true
|
192887
193061
|
},
|
192888
|
-
"
|
193062
|
+
"S9e": {
|
192889
193063
|
"type": "list",
|
192890
193064
|
"member": {
|
192891
193065
|
"locationName": "AvailableProcessorFeature",
|
@@ -192897,7 +193071,7 @@ module.exports={
|
|
192897
193071
|
}
|
192898
193072
|
}
|
192899
193073
|
},
|
192900
|
-
"
|
193074
|
+
"S9n": {
|
192901
193075
|
"type": "structure",
|
192902
193076
|
"members": {
|
192903
193077
|
"ReservedDBInstanceId": {},
|
@@ -192926,14 +193100,14 @@ module.exports={
|
|
192926
193100
|
},
|
192927
193101
|
"State": {},
|
192928
193102
|
"RecurringCharges": {
|
192929
|
-
"shape": "
|
193103
|
+
"shape": "S9p"
|
192930
193104
|
},
|
192931
193105
|
"ReservedDBInstanceArn": {},
|
192932
193106
|
"LeaseId": {}
|
192933
193107
|
},
|
192934
193108
|
"wrapper": true
|
192935
193109
|
},
|
192936
|
-
"
|
193110
|
+
"S9p": {
|
192937
193111
|
"type": "list",
|
192938
193112
|
"member": {
|
192939
193113
|
"locationName": "RecurringCharge",
|
@@ -192947,7 +193121,7 @@ module.exports={
|
|
192947
193121
|
"wrapper": true
|
192948
193122
|
}
|
192949
193123
|
},
|
192950
|
-
"
|
193124
|
+
"Sa4": {
|
192951
193125
|
"type": "list",
|
192952
193126
|
"member": {
|
192953
193127
|
"locationName": "Range",
|
@@ -192965,7 +193139,7 @@ module.exports={
|
|
192965
193139
|
}
|
192966
193140
|
}
|
192967
193141
|
},
|
192968
|
-
"
|
193142
|
+
"Sas": {
|
192969
193143
|
"type": "structure",
|
192970
193144
|
"members": {
|
192971
193145
|
"EnableLogTypes": {
|
@@ -192976,13 +193150,13 @@ module.exports={
|
|
192976
193150
|
}
|
192977
193151
|
}
|
192978
193152
|
},
|
192979
|
-
"
|
193153
|
+
"Saw": {
|
192980
193154
|
"type": "structure",
|
192981
193155
|
"members": {
|
192982
193156
|
"DBClusterParameterGroupName": {}
|
192983
193157
|
}
|
192984
193158
|
},
|
192985
|
-
"
|
193159
|
+
"Sb3": {
|
192986
193160
|
"type": "structure",
|
192987
193161
|
"members": {
|
192988
193162
|
"DBParameterGroupName": {}
|
@@ -240671,7 +240845,7 @@ AWS.util.update(AWS, {
|
|
240671
240845
|
/**
|
240672
240846
|
* @constant
|
240673
240847
|
*/
|
240674
|
-
VERSION: '2.
|
240848
|
+
VERSION: '2.1181.0',
|
240675
240849
|
|
240676
240850
|
/**
|
240677
240851
|
* @api private
|
@@ -262616,7 +262790,7 @@ var LRUCache = /** @class */ (function () {
|
|
262616
262790
|
}());
|
262617
262791
|
exports.LRUCache = LRUCache;
|
262618
262792
|
},{}],457:[function(require,module,exports){
|
262619
|
-
// AWS SDK for JavaScript v2.
|
262793
|
+
// AWS SDK for JavaScript v2.1181.0
|
262620
262794
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
262621
262795
|
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
|
262622
262796
|
require('./browser_loader');
|