cdk-lambda-subminute 2.0.278 → 2.0.280
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/.gitattributes +0 -1
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +17 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appstream-2016-12-01.min.json +28 -5
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +115 -56
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +26 -25
- package/node_modules/aws-sdk/apis/network-firewall-2020-11-12.min.json +30 -16
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +184 -167
- package/node_modules/aws-sdk/apis/redshift-2012-12-01.min.json +168 -58
- package/node_modules/aws-sdk/apis/redshift-2012-12-01.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +877 -862
- package/node_modules/aws-sdk/apis/ssm-sap-2018-05-10.min.json +62 -27
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +53 -53
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.paginators.json +12 -24
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.waiters2.json +33 -41
- package/node_modules/aws-sdk/clients/appstream.d.ts +46 -6
- package/node_modules/aws-sdk/clients/connectcases.d.ts +5 -5
- package/node_modules/aws-sdk/clients/ec2.d.ts +68 -0
- package/node_modules/aws-sdk/clients/groundstation.d.ts +5 -0
- package/node_modules/aws-sdk/clients/iam.d.ts +4 -4
- package/node_modules/aws-sdk/clients/networkfirewall.d.ts +31 -11
- package/node_modules/aws-sdk/clients/opensearch.d.ts +47 -22
- package/node_modules/aws-sdk/clients/redshift.d.ts +143 -0
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +36 -14
- package/node_modules/aws-sdk/clients/sns.d.ts +4 -4
- package/node_modules/aws-sdk/clients/ssmsap.d.ts +75 -4
- package/node_modules/aws-sdk/clients/transfer.d.ts +3 -3
- 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 +14 -14
- package/node_modules/aws-sdk/dist/aws-sdk.js +298 -117
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +68 -68
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -4
@@ -103,6 +103,8 @@
|
|
103
103
|
"type": "structure",
|
104
104
|
"members": {
|
105
105
|
"ComponentId": {},
|
106
|
+
"Sid": {},
|
107
|
+
"SystemNumber": {},
|
106
108
|
"ParentComponent": {},
|
107
109
|
"ChildComponents": {
|
108
110
|
"shape": "Sh"
|
@@ -111,6 +113,7 @@
|
|
111
113
|
"ComponentType": {},
|
112
114
|
"Status": {},
|
113
115
|
"SapHostname": {},
|
116
|
+
"SapFeature": {},
|
114
117
|
"SapKernelVersion": {},
|
115
118
|
"HdbVersion": {},
|
116
119
|
"Resilience": {
|
@@ -119,7 +122,10 @@
|
|
119
122
|
"HsrTier": {},
|
120
123
|
"HsrReplicationMode": {},
|
121
124
|
"HsrOperationMode": {},
|
122
|
-
"ClusterStatus": {}
|
125
|
+
"ClusterStatus": {},
|
126
|
+
"EnqueueReplication": {
|
127
|
+
"type": "boolean"
|
128
|
+
}
|
123
129
|
}
|
124
130
|
},
|
125
131
|
"AssociatedHost": {
|
@@ -127,6 +133,19 @@
|
|
127
133
|
"members": {
|
128
134
|
"Hostname": {},
|
129
135
|
"Ec2InstanceId": {},
|
136
|
+
"IpAddresses": {
|
137
|
+
"type": "list",
|
138
|
+
"member": {
|
139
|
+
"type": "structure",
|
140
|
+
"members": {
|
141
|
+
"IpAddress": {},
|
142
|
+
"Primary": {
|
143
|
+
"type": "boolean"
|
144
|
+
},
|
145
|
+
"AllocationType": {}
|
146
|
+
}
|
147
|
+
}
|
148
|
+
},
|
130
149
|
"OsVersion": {}
|
131
150
|
}
|
132
151
|
},
|
@@ -154,6 +173,14 @@
|
|
154
173
|
"deprecated": true,
|
155
174
|
"deprecatedMessage": "This shape is no longer used. Please use AssociatedHost."
|
156
175
|
},
|
176
|
+
"DatabaseConnection": {
|
177
|
+
"type": "structure",
|
178
|
+
"members": {
|
179
|
+
"DatabaseConnectionMethod": {},
|
180
|
+
"DatabaseArn": {},
|
181
|
+
"ConnectionIp": {}
|
182
|
+
}
|
183
|
+
},
|
157
184
|
"LastUpdated": {
|
158
185
|
"type": "timestamp"
|
159
186
|
},
|
@@ -189,7 +216,7 @@
|
|
189
216
|
"ApplicationId": {},
|
190
217
|
"ComponentId": {},
|
191
218
|
"Credentials": {
|
192
|
-
"shape": "
|
219
|
+
"shape": "S1d"
|
193
220
|
},
|
194
221
|
"DatabaseId": {},
|
195
222
|
"DatabaseName": {},
|
@@ -229,7 +256,7 @@
|
|
229
256
|
"type": "structure",
|
230
257
|
"members": {
|
231
258
|
"Operation": {
|
232
|
-
"shape": "
|
259
|
+
"shape": "S1o"
|
233
260
|
}
|
234
261
|
}
|
235
262
|
}
|
@@ -267,6 +294,9 @@
|
|
267
294
|
"NextToken": {},
|
268
295
|
"MaxResults": {
|
269
296
|
"type": "integer"
|
297
|
+
},
|
298
|
+
"Filters": {
|
299
|
+
"shape": "S1z"
|
270
300
|
}
|
271
301
|
}
|
272
302
|
},
|
@@ -279,6 +309,7 @@
|
|
279
309
|
"type": "structure",
|
280
310
|
"members": {
|
281
311
|
"Id": {},
|
312
|
+
"DiscoveryStatus": {},
|
282
313
|
"Type": {},
|
283
314
|
"Arn": {},
|
284
315
|
"Tags": {
|
@@ -384,20 +415,7 @@
|
|
384
415
|
},
|
385
416
|
"NextToken": {},
|
386
417
|
"Filters": {
|
387
|
-
"
|
388
|
-
"member": {
|
389
|
-
"type": "structure",
|
390
|
-
"required": [
|
391
|
-
"Name",
|
392
|
-
"Value",
|
393
|
-
"Operator"
|
394
|
-
],
|
395
|
-
"members": {
|
396
|
-
"Name": {},
|
397
|
-
"Value": {},
|
398
|
-
"Operator": {}
|
399
|
-
}
|
400
|
-
}
|
418
|
+
"shape": "S1z"
|
401
419
|
}
|
402
420
|
}
|
403
421
|
},
|
@@ -407,7 +425,7 @@
|
|
407
425
|
"Operations": {
|
408
426
|
"type": "list",
|
409
427
|
"member": {
|
410
|
-
"shape": "
|
428
|
+
"shape": "S1o"
|
411
429
|
}
|
412
430
|
},
|
413
431
|
"NextToken": {}
|
@@ -476,8 +494,7 @@
|
|
476
494
|
"required": [
|
477
495
|
"ApplicationId",
|
478
496
|
"ApplicationType",
|
479
|
-
"Instances"
|
480
|
-
"Credentials"
|
497
|
+
"Instances"
|
481
498
|
],
|
482
499
|
"members": {
|
483
500
|
"ApplicationId": {},
|
@@ -492,8 +509,9 @@
|
|
492
509
|
"shape": "Sk"
|
493
510
|
},
|
494
511
|
"Credentials": {
|
495
|
-
"shape": "
|
496
|
-
}
|
512
|
+
"shape": "S1d"
|
513
|
+
},
|
514
|
+
"DatabaseArn": {}
|
497
515
|
}
|
498
516
|
},
|
499
517
|
"output": {
|
@@ -597,10 +615,10 @@
|
|
597
615
|
"members": {
|
598
616
|
"ApplicationId": {},
|
599
617
|
"CredentialsToAddOrUpdate": {
|
600
|
-
"shape": "
|
618
|
+
"shape": "S1d"
|
601
619
|
},
|
602
620
|
"CredentialsToRemove": {
|
603
|
-
"shape": "
|
621
|
+
"shape": "S1d"
|
604
622
|
},
|
605
623
|
"Backint": {
|
606
624
|
"type": "structure",
|
@@ -614,7 +632,8 @@
|
|
614
632
|
"type": "boolean"
|
615
633
|
}
|
616
634
|
}
|
617
|
-
}
|
635
|
+
},
|
636
|
+
"DatabaseArn": {}
|
618
637
|
}
|
619
638
|
},
|
620
639
|
"output": {
|
@@ -657,7 +676,7 @@
|
|
657
676
|
"key": {},
|
658
677
|
"value": {}
|
659
678
|
},
|
660
|
-
"
|
679
|
+
"S1d": {
|
661
680
|
"type": "list",
|
662
681
|
"member": {
|
663
682
|
"type": "structure",
|
@@ -676,7 +695,7 @@
|
|
676
695
|
}
|
677
696
|
}
|
678
697
|
},
|
679
|
-
"
|
698
|
+
"S1o": {
|
680
699
|
"type": "structure",
|
681
700
|
"members": {
|
682
701
|
"Id": {},
|
@@ -701,6 +720,22 @@
|
|
701
720
|
"type": "timestamp"
|
702
721
|
}
|
703
722
|
}
|
723
|
+
},
|
724
|
+
"S1z": {
|
725
|
+
"type": "list",
|
726
|
+
"member": {
|
727
|
+
"type": "structure",
|
728
|
+
"required": [
|
729
|
+
"Name",
|
730
|
+
"Value",
|
731
|
+
"Operator"
|
732
|
+
],
|
733
|
+
"members": {
|
734
|
+
"Name": {},
|
735
|
+
"Value": {},
|
736
|
+
"Operator": {}
|
737
|
+
}
|
738
|
+
}
|
704
739
|
}
|
705
740
|
}
|
706
741
|
}
|
@@ -163,20 +163,20 @@
|
|
163
163
|
"PostAuthenticationLoginBanner": {},
|
164
164
|
"PreAuthenticationLoginBanner": {},
|
165
165
|
"Protocols": {
|
166
|
-
"shape": "
|
166
|
+
"shape": "S1y"
|
167
167
|
},
|
168
168
|
"ProtocolDetails": {
|
169
|
-
"shape": "
|
169
|
+
"shape": "S20"
|
170
170
|
},
|
171
171
|
"SecurityPolicyName": {},
|
172
172
|
"Tags": {
|
173
173
|
"shape": "Sk"
|
174
174
|
},
|
175
175
|
"WorkflowDetails": {
|
176
|
-
"shape": "
|
176
|
+
"shape": "S27"
|
177
177
|
},
|
178
178
|
"StructuredLogDestinations": {
|
179
|
-
"shape": "
|
179
|
+
"shape": "S2c"
|
180
180
|
}
|
181
181
|
}
|
182
182
|
},
|
@@ -238,10 +238,10 @@
|
|
238
238
|
"members": {
|
239
239
|
"Description": {},
|
240
240
|
"Steps": {
|
241
|
-
"shape": "
|
241
|
+
"shape": "S2l"
|
242
242
|
},
|
243
243
|
"OnExceptionSteps": {
|
244
|
-
"shape": "
|
244
|
+
"shape": "S2l"
|
245
245
|
},
|
246
246
|
"Tags": {
|
247
247
|
"shape": "Sk"
|
@@ -487,10 +487,10 @@
|
|
487
487
|
"Usage": {},
|
488
488
|
"Status": {},
|
489
489
|
"Certificate": {
|
490
|
-
"shape": "
|
490
|
+
"shape": "S3y"
|
491
491
|
},
|
492
492
|
"CertificateChain": {
|
493
|
-
"shape": "
|
493
|
+
"shape": "S3z"
|
494
494
|
},
|
495
495
|
"ActiveDate": {
|
496
496
|
"type": "timestamp"
|
@@ -581,10 +581,10 @@
|
|
581
581
|
"members": {
|
582
582
|
"ExecutionId": {},
|
583
583
|
"InitialFileLocation": {
|
584
|
-
"shape": "
|
584
|
+
"shape": "S4a"
|
585
585
|
},
|
586
586
|
"ServiceMetadata": {
|
587
|
-
"shape": "
|
587
|
+
"shape": "S4e"
|
588
588
|
},
|
589
589
|
"ExecutionRole": {},
|
590
590
|
"LoggingConfiguration": {
|
@@ -602,10 +602,10 @@
|
|
602
602
|
"type": "structure",
|
603
603
|
"members": {
|
604
604
|
"Steps": {
|
605
|
-
"shape": "
|
605
|
+
"shape": "S4l"
|
606
606
|
},
|
607
607
|
"OnExceptionSteps": {
|
608
|
-
"shape": "
|
608
|
+
"shape": "S4l"
|
609
609
|
}
|
610
610
|
}
|
611
611
|
}
|
@@ -718,16 +718,16 @@
|
|
718
718
|
},
|
719
719
|
"SecurityPolicyName": {},
|
720
720
|
"SshCiphers": {
|
721
|
-
"shape": "
|
721
|
+
"shape": "S55"
|
722
722
|
},
|
723
723
|
"SshKexs": {
|
724
|
-
"shape": "
|
724
|
+
"shape": "S55"
|
725
725
|
},
|
726
726
|
"SshMacs": {
|
727
|
-
"shape": "
|
727
|
+
"shape": "S55"
|
728
728
|
},
|
729
729
|
"TlsCiphers": {
|
730
|
-
"shape": "
|
730
|
+
"shape": "S55"
|
731
731
|
}
|
732
732
|
}
|
733
733
|
}
|
@@ -759,7 +759,7 @@
|
|
759
759
|
"Arn": {},
|
760
760
|
"Certificate": {},
|
761
761
|
"ProtocolDetails": {
|
762
|
-
"shape": "
|
762
|
+
"shape": "S20"
|
763
763
|
},
|
764
764
|
"Domain": {},
|
765
765
|
"EndpointDetails": {
|
@@ -775,7 +775,7 @@
|
|
775
775
|
"PostAuthenticationLoginBanner": {},
|
776
776
|
"PreAuthenticationLoginBanner": {},
|
777
777
|
"Protocols": {
|
778
|
-
"shape": "
|
778
|
+
"shape": "S1y"
|
779
779
|
},
|
780
780
|
"SecurityPolicyName": {},
|
781
781
|
"ServerId": {},
|
@@ -787,10 +787,10 @@
|
|
787
787
|
"type": "integer"
|
788
788
|
},
|
789
789
|
"WorkflowDetails": {
|
790
|
-
"shape": "
|
790
|
+
"shape": "S27"
|
791
791
|
},
|
792
792
|
"StructuredLogDestinations": {
|
793
|
-
"shape": "
|
793
|
+
"shape": "S2c"
|
794
794
|
}
|
795
795
|
}
|
796
796
|
}
|
@@ -886,10 +886,10 @@
|
|
886
886
|
"Arn": {},
|
887
887
|
"Description": {},
|
888
888
|
"Steps": {
|
889
|
-
"shape": "
|
889
|
+
"shape": "S2l"
|
890
890
|
},
|
891
891
|
"OnExceptionSteps": {
|
892
|
-
"shape": "
|
892
|
+
"shape": "S2l"
|
893
893
|
},
|
894
894
|
"WorkflowId": {},
|
895
895
|
"Tags": {
|
@@ -910,10 +910,10 @@
|
|
910
910
|
"members": {
|
911
911
|
"Usage": {},
|
912
912
|
"Certificate": {
|
913
|
-
"shape": "
|
913
|
+
"shape": "S3y"
|
914
914
|
},
|
915
915
|
"CertificateChain": {
|
916
|
-
"shape": "
|
916
|
+
"shape": "S3z"
|
917
917
|
},
|
918
918
|
"PrivateKey": {
|
919
919
|
"type": "string",
|
@@ -1177,10 +1177,10 @@
|
|
1177
1177
|
"members": {
|
1178
1178
|
"ExecutionId": {},
|
1179
1179
|
"InitialFileLocation": {
|
1180
|
-
"shape": "
|
1180
|
+
"shape": "S4a"
|
1181
1181
|
},
|
1182
1182
|
"ServiceMetadata": {
|
1183
|
-
"shape": "
|
1183
|
+
"shape": "S4e"
|
1184
1184
|
},
|
1185
1185
|
"Status": {}
|
1186
1186
|
}
|
@@ -1463,10 +1463,10 @@
|
|
1463
1463
|
"members": {
|
1464
1464
|
"ConnectorId": {},
|
1465
1465
|
"SendFilePaths": {
|
1466
|
-
"shape": "
|
1466
|
+
"shape": "S78"
|
1467
1467
|
},
|
1468
1468
|
"RetrieveFilePaths": {
|
1469
|
-
"shape": "
|
1469
|
+
"shape": "S78"
|
1470
1470
|
},
|
1471
1471
|
"LocalDirectoryPath": {},
|
1472
1472
|
"RemoteDirectoryPath": {}
|
@@ -1764,7 +1764,7 @@
|
|
1764
1764
|
"members": {
|
1765
1765
|
"Certificate": {},
|
1766
1766
|
"ProtocolDetails": {
|
1767
|
-
"shape": "
|
1767
|
+
"shape": "S20"
|
1768
1768
|
},
|
1769
1769
|
"EndpointDetails": {
|
1770
1770
|
"shape": "S1f"
|
@@ -1780,15 +1780,15 @@
|
|
1780
1780
|
"PostAuthenticationLoginBanner": {},
|
1781
1781
|
"PreAuthenticationLoginBanner": {},
|
1782
1782
|
"Protocols": {
|
1783
|
-
"shape": "
|
1783
|
+
"shape": "S1y"
|
1784
1784
|
},
|
1785
1785
|
"SecurityPolicyName": {},
|
1786
1786
|
"ServerId": {},
|
1787
1787
|
"WorkflowDetails": {
|
1788
|
-
"shape": "
|
1788
|
+
"shape": "S27"
|
1789
1789
|
},
|
1790
1790
|
"StructuredLogDestinations": {
|
1791
|
-
"shape": "
|
1791
|
+
"shape": "S2c"
|
1792
1792
|
}
|
1793
1793
|
}
|
1794
1794
|
},
|
@@ -1948,11 +1948,11 @@
|
|
1948
1948
|
"SftpAuthenticationMethods": {}
|
1949
1949
|
}
|
1950
1950
|
},
|
1951
|
-
"
|
1951
|
+
"S1y": {
|
1952
1952
|
"type": "list",
|
1953
1953
|
"member": {}
|
1954
1954
|
},
|
1955
|
-
"
|
1955
|
+
"S20": {
|
1956
1956
|
"type": "structure",
|
1957
1957
|
"members": {
|
1958
1958
|
"PassiveIp": {},
|
@@ -1964,24 +1964,24 @@
|
|
1964
1964
|
}
|
1965
1965
|
}
|
1966
1966
|
},
|
1967
|
-
"
|
1967
|
+
"S27": {
|
1968
1968
|
"type": "structure",
|
1969
1969
|
"members": {
|
1970
1970
|
"OnUpload": {
|
1971
1971
|
"type": "list",
|
1972
1972
|
"member": {
|
1973
|
-
"shape": "
|
1973
|
+
"shape": "S29"
|
1974
1974
|
}
|
1975
1975
|
},
|
1976
1976
|
"OnPartialUpload": {
|
1977
1977
|
"type": "list",
|
1978
1978
|
"member": {
|
1979
|
-
"shape": "
|
1979
|
+
"shape": "S29"
|
1980
1980
|
}
|
1981
1981
|
}
|
1982
1982
|
}
|
1983
1983
|
},
|
1984
|
-
"
|
1984
|
+
"S29": {
|
1985
1985
|
"type": "structure",
|
1986
1986
|
"required": [
|
1987
1987
|
"WorkflowId",
|
@@ -1992,11 +1992,11 @@
|
|
1992
1992
|
"ExecutionRole": {}
|
1993
1993
|
}
|
1994
1994
|
},
|
1995
|
-
"
|
1995
|
+
"S2c": {
|
1996
1996
|
"type": "list",
|
1997
1997
|
"member": {}
|
1998
1998
|
},
|
1999
|
-
"
|
1999
|
+
"S2l": {
|
2000
2000
|
"type": "list",
|
2001
2001
|
"member": {
|
2002
2002
|
"type": "structure",
|
@@ -2007,7 +2007,7 @@
|
|
2007
2007
|
"members": {
|
2008
2008
|
"Name": {},
|
2009
2009
|
"DestinationFileLocation": {
|
2010
|
-
"shape": "
|
2010
|
+
"shape": "S2q"
|
2011
2011
|
},
|
2012
2012
|
"OverwriteExisting": {},
|
2013
2013
|
"SourceFileLocation": {}
|
@@ -2064,14 +2064,14 @@
|
|
2064
2064
|
"SourceFileLocation": {},
|
2065
2065
|
"OverwriteExisting": {},
|
2066
2066
|
"DestinationFileLocation": {
|
2067
|
-
"shape": "
|
2067
|
+
"shape": "S2q"
|
2068
2068
|
}
|
2069
2069
|
}
|
2070
2070
|
}
|
2071
2071
|
}
|
2072
2072
|
}
|
2073
2073
|
},
|
2074
|
-
"
|
2074
|
+
"S2q": {
|
2075
2075
|
"type": "structure",
|
2076
2076
|
"members": {
|
2077
2077
|
"S3FileLocation": {
|
@@ -2082,26 +2082,26 @@
|
|
2082
2082
|
}
|
2083
2083
|
},
|
2084
2084
|
"EfsFileLocation": {
|
2085
|
-
"shape": "
|
2085
|
+
"shape": "S2u"
|
2086
2086
|
}
|
2087
2087
|
}
|
2088
2088
|
},
|
2089
|
-
"
|
2089
|
+
"S2u": {
|
2090
2090
|
"type": "structure",
|
2091
2091
|
"members": {
|
2092
2092
|
"FileSystemId": {},
|
2093
2093
|
"Path": {}
|
2094
2094
|
}
|
2095
2095
|
},
|
2096
|
-
"
|
2096
|
+
"S3y": {
|
2097
2097
|
"type": "string",
|
2098
2098
|
"sensitive": true
|
2099
2099
|
},
|
2100
|
-
"
|
2100
|
+
"S3z": {
|
2101
2101
|
"type": "string",
|
2102
2102
|
"sensitive": true
|
2103
2103
|
},
|
2104
|
-
"
|
2104
|
+
"S4a": {
|
2105
2105
|
"type": "structure",
|
2106
2106
|
"members": {
|
2107
2107
|
"S3FileLocation": {
|
@@ -2114,11 +2114,11 @@
|
|
2114
2114
|
}
|
2115
2115
|
},
|
2116
2116
|
"EfsFileLocation": {
|
2117
|
-
"shape": "
|
2117
|
+
"shape": "S2u"
|
2118
2118
|
}
|
2119
2119
|
}
|
2120
2120
|
},
|
2121
|
-
"
|
2121
|
+
"S4e": {
|
2122
2122
|
"type": "structure",
|
2123
2123
|
"required": [
|
2124
2124
|
"UserDetails"
|
@@ -2138,7 +2138,7 @@
|
|
2138
2138
|
}
|
2139
2139
|
}
|
2140
2140
|
},
|
2141
|
-
"
|
2141
|
+
"S4l": {
|
2142
2142
|
"type": "list",
|
2143
2143
|
"member": {
|
2144
2144
|
"type": "structure",
|
@@ -2159,11 +2159,11 @@
|
|
2159
2159
|
}
|
2160
2160
|
}
|
2161
2161
|
},
|
2162
|
-
"
|
2162
|
+
"S55": {
|
2163
2163
|
"type": "list",
|
2164
2164
|
"member": {}
|
2165
2165
|
},
|
2166
|
-
"
|
2166
|
+
"S78": {
|
2167
2167
|
"type": "list",
|
2168
2168
|
"member": {}
|
2169
2169
|
}
|
@@ -2,81 +2,69 @@
|
|
2
2
|
"pagination": {
|
3
3
|
"ListAccesses": {
|
4
4
|
"input_token": "NextToken",
|
5
|
-
"limit_key": "MaxResults",
|
6
|
-
"non_aggregate_keys": [
|
7
|
-
"ServerId"
|
8
|
-
],
|
9
5
|
"output_token": "NextToken",
|
6
|
+
"limit_key": "MaxResults",
|
10
7
|
"result_key": "Accesses"
|
11
8
|
},
|
12
9
|
"ListAgreements": {
|
13
10
|
"input_token": "NextToken",
|
14
|
-
"limit_key": "MaxResults",
|
15
11
|
"output_token": "NextToken",
|
12
|
+
"limit_key": "MaxResults",
|
16
13
|
"result_key": "Agreements"
|
17
14
|
},
|
18
15
|
"ListCertificates": {
|
19
16
|
"input_token": "NextToken",
|
20
|
-
"limit_key": "MaxResults",
|
21
17
|
"output_token": "NextToken",
|
18
|
+
"limit_key": "MaxResults",
|
22
19
|
"result_key": "Certificates"
|
23
20
|
},
|
24
21
|
"ListConnectors": {
|
25
22
|
"input_token": "NextToken",
|
26
|
-
"limit_key": "MaxResults",
|
27
23
|
"output_token": "NextToken",
|
24
|
+
"limit_key": "MaxResults",
|
28
25
|
"result_key": "Connectors"
|
29
26
|
},
|
30
27
|
"ListExecutions": {
|
31
28
|
"input_token": "NextToken",
|
32
|
-
"limit_key": "MaxResults",
|
33
|
-
"non_aggregate_keys": [
|
34
|
-
"WorkflowId"
|
35
|
-
],
|
36
29
|
"output_token": "NextToken",
|
30
|
+
"limit_key": "MaxResults",
|
37
31
|
"result_key": "Executions"
|
38
32
|
},
|
39
33
|
"ListProfiles": {
|
40
34
|
"input_token": "NextToken",
|
41
|
-
"limit_key": "MaxResults",
|
42
35
|
"output_token": "NextToken",
|
36
|
+
"limit_key": "MaxResults",
|
43
37
|
"result_key": "Profiles"
|
44
38
|
},
|
45
39
|
"ListSecurityPolicies": {
|
46
40
|
"input_token": "NextToken",
|
47
|
-
"limit_key": "MaxResults",
|
48
41
|
"output_token": "NextToken",
|
42
|
+
"limit_key": "MaxResults",
|
49
43
|
"result_key": "SecurityPolicyNames"
|
50
44
|
},
|
51
45
|
"ListServers": {
|
52
46
|
"input_token": "NextToken",
|
53
|
-
"limit_key": "MaxResults",
|
54
47
|
"output_token": "NextToken",
|
48
|
+
"limit_key": "MaxResults",
|
55
49
|
"result_key": "Servers"
|
56
50
|
},
|
57
51
|
"ListTagsForResource": {
|
58
52
|
"input_token": "NextToken",
|
59
|
-
"limit_key": "MaxResults",
|
60
|
-
"non_aggregate_keys": [
|
61
|
-
"Arn"
|
62
|
-
],
|
63
53
|
"output_token": "NextToken",
|
54
|
+
"limit_key": "MaxResults",
|
64
55
|
"result_key": "Tags"
|
65
56
|
},
|
66
57
|
"ListUsers": {
|
67
58
|
"input_token": "NextToken",
|
68
|
-
"limit_key": "MaxResults",
|
69
|
-
"non_aggregate_keys": [
|
70
|
-
"ServerId"
|
71
|
-
],
|
72
59
|
"output_token": "NextToken",
|
60
|
+
"limit_key": "MaxResults",
|
73
61
|
"result_key": "Users"
|
74
62
|
},
|
75
63
|
"ListWorkflows": {
|
76
64
|
"input_token": "NextToken",
|
77
|
-
"limit_key": "MaxResults",
|
78
65
|
"output_token": "NextToken",
|
66
|
+
"limit_key": "MaxResults",
|
79
67
|
"result_key": "Workflows"
|
80
68
|
}
|
81
69
|
}
|
82
|
-
}
|
70
|
+
}
|