cdk-lambda-subminute 2.0.439 → 2.0.440
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-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +5 -1
- package/node_modules/aws-sdk/apis/fms-2018-01-01.min.json +331 -144
- package/node_modules/aws-sdk/apis/rds-2013-01-10.min.json +3 -0
- package/node_modules/aws-sdk/apis/rds-2013-02-12.min.json +3 -0
- package/node_modules/aws-sdk/apis/rds-2013-09-09.min.json +3 -0
- package/node_modules/aws-sdk/apis/rds-2014-09-01.min.json +3 -0
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +3 -0
- package/node_modules/aws-sdk/apis/states-2016-11-23.min.json +44 -0
- package/node_modules/aws-sdk/clients/appsync.d.ts +1 -1
- package/node_modules/aws-sdk/clients/fms.d.ts +258 -20
- package/node_modules/aws-sdk/clients/ivs.d.ts +1 -1
- package/node_modules/aws-sdk/clients/rds.d.ts +4 -4
- package/node_modules/aws-sdk/clients/stepfunctions.d.ts +52 -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 +9 -9
- package/node_modules/aws-sdk/dist/aws-sdk.js +18 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +27 -27
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -5,6 +5,9 @@
|
|
5
5
|
"endpointPrefix": "states",
|
6
6
|
"jsonVersion": "1.0",
|
7
7
|
"protocol": "json",
|
8
|
+
"protocols": [
|
9
|
+
"json"
|
10
|
+
],
|
8
11
|
"serviceAbbreviation": "AWS SFN",
|
9
12
|
"serviceFullName": "AWS Step Functions",
|
10
13
|
"serviceId": "SFN",
|
@@ -1771,6 +1774,47 @@
|
|
1771
1774
|
}
|
1772
1775
|
}
|
1773
1776
|
}
|
1777
|
+
},
|
1778
|
+
"ValidateStateMachineDefinition": {
|
1779
|
+
"input": {
|
1780
|
+
"type": "structure",
|
1781
|
+
"required": [
|
1782
|
+
"definition"
|
1783
|
+
],
|
1784
|
+
"members": {
|
1785
|
+
"definition": {
|
1786
|
+
"shape": "Sb"
|
1787
|
+
},
|
1788
|
+
"type": {}
|
1789
|
+
}
|
1790
|
+
},
|
1791
|
+
"output": {
|
1792
|
+
"type": "structure",
|
1793
|
+
"required": [
|
1794
|
+
"result",
|
1795
|
+
"diagnostics"
|
1796
|
+
],
|
1797
|
+
"members": {
|
1798
|
+
"result": {},
|
1799
|
+
"diagnostics": {
|
1800
|
+
"type": "list",
|
1801
|
+
"member": {
|
1802
|
+
"type": "structure",
|
1803
|
+
"required": [
|
1804
|
+
"severity",
|
1805
|
+
"code",
|
1806
|
+
"message"
|
1807
|
+
],
|
1808
|
+
"members": {
|
1809
|
+
"severity": {},
|
1810
|
+
"code": {},
|
1811
|
+
"message": {},
|
1812
|
+
"location": {}
|
1813
|
+
}
|
1814
|
+
}
|
1815
|
+
}
|
1816
|
+
}
|
1817
|
+
}
|
1774
1818
|
}
|
1775
1819
|
},
|
1776
1820
|
"shapes": {
|
@@ -2822,7 +2822,7 @@ declare namespace AppSync {
|
|
2822
2822
|
/**
|
2823
2823
|
* The new authentication type for the GraphqlApi object.
|
2824
2824
|
*/
|
2825
|
-
authenticationType
|
2825
|
+
authenticationType: AuthenticationType;
|
2826
2826
|
/**
|
2827
2827
|
* The new Amazon Cognito user pool configuration for the ~GraphqlApi object.
|
2828
2828
|
*/
|