cdk-lambda-subminute 2.0.264 → 2.0.266
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/CHANGELOG.md +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.examples.json +1 -1
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.min.json +57 -57
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.paginators.json +15 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +68 -1
- package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +31 -18
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +134 -82
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.min.json +14 -8
- package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +102 -96
- package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +36 -36
- package/node_modules/aws-sdk/apis/machinelearning-2014-12-12.min.json +8 -2
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +43 -7
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +194 -161
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +740 -728
- package/node_modules/aws-sdk/apis/textract-2018-06-27.min.json +483 -76
- package/node_modules/aws-sdk/apis/textract-2018-06-27.paginators.json +12 -0
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +4 -3
- package/node_modules/aws-sdk/clients/configservice.d.ts +15 -15
- package/node_modules/aws-sdk/clients/controltower.d.ts +104 -15
- package/node_modules/aws-sdk/clients/customerprofiles.d.ts +6 -6
- package/node_modules/aws-sdk/clients/ec2.d.ts +62 -6
- package/node_modules/aws-sdk/clients/elbv2.d.ts +7 -7
- package/node_modules/aws-sdk/clients/glue.d.ts +5 -5
- package/node_modules/aws-sdk/clients/inspector2.d.ts +25 -25
- package/node_modules/aws-sdk/clients/ivsrealtime.d.ts +25 -0
- package/node_modules/aws-sdk/clients/lambda.d.ts +9 -0
- package/node_modules/aws-sdk/clients/pricing.d.ts +8 -8
- package/node_modules/aws-sdk/clients/rds.d.ts +48 -0
- package/node_modules/aws-sdk/clients/rekognition.d.ts +141 -72
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +26 -6
- package/node_modules/aws-sdk/clients/textract.d.ts +534 -2
- package/node_modules/aws-sdk/clients/transcribeservice.d.ts +1 -1
- package/node_modules/aws-sdk/clients/workspaces.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 +15 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +592 -444
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +99 -99
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/function-bind/.eslintrc +11 -5
- package/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/node_modules/function-bind/.nycrc +13 -0
- package/node_modules/function-bind/CHANGELOG.md +136 -0
- package/node_modules/function-bind/README.md +25 -27
- package/node_modules/function-bind/implementation.js +44 -12
- package/node_modules/function-bind/package.json +38 -14
- package/package.json +3 -3
- package/node_modules/function-bind/.editorconfig +0 -20
- package/node_modules/function-bind/.jscs.json +0 -176
- package/node_modules/function-bind/.npmignore +0 -22
- package/node_modules/function-bind/.travis.yml +0 -168
@@ -1,176 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"es3": true,
|
3
|
-
|
4
|
-
"additionalRules": [],
|
5
|
-
|
6
|
-
"requireSemicolons": true,
|
7
|
-
|
8
|
-
"disallowMultipleSpaces": true,
|
9
|
-
|
10
|
-
"disallowIdentifierNames": [],
|
11
|
-
|
12
|
-
"requireCurlyBraces": {
|
13
|
-
"allExcept": [],
|
14
|
-
"keywords": ["if", "else", "for", "while", "do", "try", "catch"]
|
15
|
-
},
|
16
|
-
|
17
|
-
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch", "function"],
|
18
|
-
|
19
|
-
"disallowSpaceAfterKeywords": [],
|
20
|
-
|
21
|
-
"disallowSpaceBeforeComma": true,
|
22
|
-
"disallowSpaceAfterComma": false,
|
23
|
-
"disallowSpaceBeforeSemicolon": true,
|
24
|
-
|
25
|
-
"disallowNodeTypes": [
|
26
|
-
"DebuggerStatement",
|
27
|
-
"ForInStatement",
|
28
|
-
"LabeledStatement",
|
29
|
-
"SwitchCase",
|
30
|
-
"SwitchStatement",
|
31
|
-
"WithStatement"
|
32
|
-
],
|
33
|
-
|
34
|
-
"requireObjectKeysOnNewLine": { "allExcept": ["sameLine"] },
|
35
|
-
|
36
|
-
"requireSpacesInAnonymousFunctionExpression": { "beforeOpeningRoundBrace": true, "beforeOpeningCurlyBrace": true },
|
37
|
-
"requireSpacesInNamedFunctionExpression": { "beforeOpeningCurlyBrace": true },
|
38
|
-
"disallowSpacesInNamedFunctionExpression": { "beforeOpeningRoundBrace": true },
|
39
|
-
"requireSpacesInFunctionDeclaration": { "beforeOpeningCurlyBrace": true },
|
40
|
-
"disallowSpacesInFunctionDeclaration": { "beforeOpeningRoundBrace": true },
|
41
|
-
|
42
|
-
"requireSpaceBetweenArguments": true,
|
43
|
-
|
44
|
-
"disallowSpacesInsideParentheses": true,
|
45
|
-
|
46
|
-
"disallowSpacesInsideArrayBrackets": true,
|
47
|
-
|
48
|
-
"disallowQuotedKeysInObjects": { "allExcept": ["reserved"] },
|
49
|
-
|
50
|
-
"disallowSpaceAfterObjectKeys": true,
|
51
|
-
|
52
|
-
"requireCommaBeforeLineBreak": true,
|
53
|
-
|
54
|
-
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
|
55
|
-
"requireSpaceAfterPrefixUnaryOperators": [],
|
56
|
-
|
57
|
-
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
|
58
|
-
"requireSpaceBeforePostfixUnaryOperators": [],
|
59
|
-
|
60
|
-
"disallowSpaceBeforeBinaryOperators": [],
|
61
|
-
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
62
|
-
|
63
|
-
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
64
|
-
"disallowSpaceAfterBinaryOperators": [],
|
65
|
-
|
66
|
-
"disallowImplicitTypeConversion": ["binary", "string"],
|
67
|
-
|
68
|
-
"disallowKeywords": ["with", "eval"],
|
69
|
-
|
70
|
-
"requireKeywordsOnNewLine": [],
|
71
|
-
"disallowKeywordsOnNewLine": ["else"],
|
72
|
-
|
73
|
-
"requireLineFeedAtFileEnd": true,
|
74
|
-
|
75
|
-
"disallowTrailingWhitespace": true,
|
76
|
-
|
77
|
-
"disallowTrailingComma": true,
|
78
|
-
|
79
|
-
"excludeFiles": ["node_modules/**", "vendor/**"],
|
80
|
-
|
81
|
-
"disallowMultipleLineStrings": true,
|
82
|
-
|
83
|
-
"requireDotNotation": { "allExcept": ["keywords"] },
|
84
|
-
|
85
|
-
"requireParenthesesAroundIIFE": true,
|
86
|
-
|
87
|
-
"validateLineBreaks": "LF",
|
88
|
-
|
89
|
-
"validateQuoteMarks": {
|
90
|
-
"escape": true,
|
91
|
-
"mark": "'"
|
92
|
-
},
|
93
|
-
|
94
|
-
"disallowOperatorBeforeLineBreak": [],
|
95
|
-
|
96
|
-
"requireSpaceBeforeKeywords": [
|
97
|
-
"do",
|
98
|
-
"for",
|
99
|
-
"if",
|
100
|
-
"else",
|
101
|
-
"switch",
|
102
|
-
"case",
|
103
|
-
"try",
|
104
|
-
"catch",
|
105
|
-
"finally",
|
106
|
-
"while",
|
107
|
-
"with",
|
108
|
-
"return"
|
109
|
-
],
|
110
|
-
|
111
|
-
"validateAlignedFunctionParameters": {
|
112
|
-
"lineBreakAfterOpeningBraces": true,
|
113
|
-
"lineBreakBeforeClosingBraces": true
|
114
|
-
},
|
115
|
-
|
116
|
-
"requirePaddingNewLinesBeforeExport": true,
|
117
|
-
|
118
|
-
"validateNewlineAfterArrayElements": {
|
119
|
-
"maximum": 8
|
120
|
-
},
|
121
|
-
|
122
|
-
"requirePaddingNewLinesAfterUseStrict": true,
|
123
|
-
|
124
|
-
"disallowArrowFunctions": true,
|
125
|
-
|
126
|
-
"disallowMultiLineTernary": true,
|
127
|
-
|
128
|
-
"validateOrderInObjectKeys": "asc-insensitive",
|
129
|
-
|
130
|
-
"disallowIdenticalDestructuringNames": true,
|
131
|
-
|
132
|
-
"disallowNestedTernaries": { "maxLevel": 1 },
|
133
|
-
|
134
|
-
"requireSpaceAfterComma": { "allExcept": ["trailing"] },
|
135
|
-
"requireAlignedMultilineParams": false,
|
136
|
-
|
137
|
-
"requireSpacesInGenerator": {
|
138
|
-
"afterStar": true
|
139
|
-
},
|
140
|
-
|
141
|
-
"disallowSpacesInGenerator": {
|
142
|
-
"beforeStar": true
|
143
|
-
},
|
144
|
-
|
145
|
-
"disallowVar": false,
|
146
|
-
|
147
|
-
"requireArrayDestructuring": false,
|
148
|
-
|
149
|
-
"requireEnhancedObjectLiterals": false,
|
150
|
-
|
151
|
-
"requireObjectDestructuring": false,
|
152
|
-
|
153
|
-
"requireEarlyReturn": false,
|
154
|
-
|
155
|
-
"requireCapitalizedConstructorsNew": {
|
156
|
-
"allExcept": ["Function", "String", "Object", "Symbol", "Number", "Date", "RegExp", "Error", "Boolean", "Array"]
|
157
|
-
},
|
158
|
-
|
159
|
-
"requireImportAlphabetized": false,
|
160
|
-
|
161
|
-
"requireSpaceBeforeObjectValues": true,
|
162
|
-
"requireSpaceBeforeDestructuredValues": true,
|
163
|
-
|
164
|
-
"disallowSpacesInsideTemplateStringPlaceholders": true,
|
165
|
-
|
166
|
-
"disallowArrayDestructuringReturn": false,
|
167
|
-
|
168
|
-
"requireNewlineBeforeSingleStatementsInIf": false,
|
169
|
-
|
170
|
-
"disallowUnusedVariables": true,
|
171
|
-
|
172
|
-
"requireSpacesInsideImportedObjectBraces": true,
|
173
|
-
|
174
|
-
"requireUseStrict": true
|
175
|
-
}
|
176
|
-
|
@@ -1,22 +0,0 @@
|
|
1
|
-
# gitignore
|
2
|
-
.DS_Store
|
3
|
-
.monitor
|
4
|
-
.*.swp
|
5
|
-
.nodemonignore
|
6
|
-
releases
|
7
|
-
*.log
|
8
|
-
*.err
|
9
|
-
fleet.json
|
10
|
-
public/browserify
|
11
|
-
bin/*.json
|
12
|
-
.bin
|
13
|
-
build
|
14
|
-
compile
|
15
|
-
.lock-wscript
|
16
|
-
coverage
|
17
|
-
node_modules
|
18
|
-
|
19
|
-
# Only apps should have lockfiles
|
20
|
-
npm-shrinkwrap.json
|
21
|
-
package-lock.json
|
22
|
-
yarn.lock
|
@@ -1,168 +0,0 @@
|
|
1
|
-
language: node_js
|
2
|
-
os:
|
3
|
-
- linux
|
4
|
-
node_js:
|
5
|
-
- "8.4"
|
6
|
-
- "7.10"
|
7
|
-
- "6.11"
|
8
|
-
- "5.12"
|
9
|
-
- "4.8"
|
10
|
-
- "iojs-v3.3"
|
11
|
-
- "iojs-v2.5"
|
12
|
-
- "iojs-v1.8"
|
13
|
-
- "0.12"
|
14
|
-
- "0.10"
|
15
|
-
- "0.8"
|
16
|
-
before_install:
|
17
|
-
- 'if [ "${TRAVIS_NODE_VERSION}" = "0.6" ]; then npm install -g npm@1.3 ; elif [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then case "$(npm --version)" in 1.*) npm install -g npm@1.4.28 ;; 2.*) npm install -g npm@2 ;; esac ; fi'
|
18
|
-
- 'if [ "${TRAVIS_NODE_VERSION}" != "0.6" ] && [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then if [ "${TRAVIS_NODE_VERSION%${TRAVIS_NODE_VERSION#[0-9]}}" = "0" ] || [ "${TRAVIS_NODE_VERSION:0:4}" = "iojs" ]; then npm install -g npm@4.5 ; else npm install -g npm; fi; fi'
|
19
|
-
install:
|
20
|
-
- 'if [ "${TRAVIS_NODE_VERSION}" = "0.6" ]; then nvm install 0.8 && npm install -g npm@1.3 && npm install -g npm@1.4.28 && npm install -g npm@2 && npm install && nvm use "${TRAVIS_NODE_VERSION}"; else npm install; fi;'
|
21
|
-
script:
|
22
|
-
- 'if [ -n "${PRETEST-}" ]; then npm run pretest ; fi'
|
23
|
-
- 'if [ -n "${POSTTEST-}" ]; then npm run posttest ; fi'
|
24
|
-
- 'if [ -n "${COVERAGE-}" ]; then npm run coverage ; fi'
|
25
|
-
- 'if [ -n "${TEST-}" ]; then npm run tests-only ; fi'
|
26
|
-
sudo: false
|
27
|
-
env:
|
28
|
-
- TEST=true
|
29
|
-
matrix:
|
30
|
-
fast_finish: true
|
31
|
-
include:
|
32
|
-
- node_js: "node"
|
33
|
-
env: PRETEST=true
|
34
|
-
- node_js: "4"
|
35
|
-
env: COVERAGE=true
|
36
|
-
- node_js: "8.3"
|
37
|
-
env: TEST=true ALLOW_FAILURE=true
|
38
|
-
- node_js: "8.2"
|
39
|
-
env: TEST=true ALLOW_FAILURE=true
|
40
|
-
- node_js: "8.1"
|
41
|
-
env: TEST=true ALLOW_FAILURE=true
|
42
|
-
- node_js: "8.0"
|
43
|
-
env: TEST=true ALLOW_FAILURE=true
|
44
|
-
- node_js: "7.9"
|
45
|
-
env: TEST=true ALLOW_FAILURE=true
|
46
|
-
- node_js: "7.8"
|
47
|
-
env: TEST=true ALLOW_FAILURE=true
|
48
|
-
- node_js: "7.7"
|
49
|
-
env: TEST=true ALLOW_FAILURE=true
|
50
|
-
- node_js: "7.6"
|
51
|
-
env: TEST=true ALLOW_FAILURE=true
|
52
|
-
- node_js: "7.5"
|
53
|
-
env: TEST=true ALLOW_FAILURE=true
|
54
|
-
- node_js: "7.4"
|
55
|
-
env: TEST=true ALLOW_FAILURE=true
|
56
|
-
- node_js: "7.3"
|
57
|
-
env: TEST=true ALLOW_FAILURE=true
|
58
|
-
- node_js: "7.2"
|
59
|
-
env: TEST=true ALLOW_FAILURE=true
|
60
|
-
- node_js: "7.1"
|
61
|
-
env: TEST=true ALLOW_FAILURE=true
|
62
|
-
- node_js: "7.0"
|
63
|
-
env: TEST=true ALLOW_FAILURE=true
|
64
|
-
- node_js: "6.10"
|
65
|
-
env: TEST=true ALLOW_FAILURE=true
|
66
|
-
- node_js: "6.9"
|
67
|
-
env: TEST=true ALLOW_FAILURE=true
|
68
|
-
- node_js: "6.8"
|
69
|
-
env: TEST=true ALLOW_FAILURE=true
|
70
|
-
- node_js: "6.7"
|
71
|
-
env: TEST=true ALLOW_FAILURE=true
|
72
|
-
- node_js: "6.6"
|
73
|
-
env: TEST=true ALLOW_FAILURE=true
|
74
|
-
- node_js: "6.5"
|
75
|
-
env: TEST=true ALLOW_FAILURE=true
|
76
|
-
- node_js: "6.4"
|
77
|
-
env: TEST=true ALLOW_FAILURE=true
|
78
|
-
- node_js: "6.3"
|
79
|
-
env: TEST=true ALLOW_FAILURE=true
|
80
|
-
- node_js: "6.2"
|
81
|
-
env: TEST=true ALLOW_FAILURE=true
|
82
|
-
- node_js: "6.1"
|
83
|
-
env: TEST=true ALLOW_FAILURE=true
|
84
|
-
- node_js: "6.0"
|
85
|
-
env: TEST=true ALLOW_FAILURE=true
|
86
|
-
- node_js: "5.11"
|
87
|
-
env: TEST=true ALLOW_FAILURE=true
|
88
|
-
- node_js: "5.10"
|
89
|
-
env: TEST=true ALLOW_FAILURE=true
|
90
|
-
- node_js: "5.9"
|
91
|
-
env: TEST=true ALLOW_FAILURE=true
|
92
|
-
- node_js: "5.8"
|
93
|
-
env: TEST=true ALLOW_FAILURE=true
|
94
|
-
- node_js: "5.7"
|
95
|
-
env: TEST=true ALLOW_FAILURE=true
|
96
|
-
- node_js: "5.6"
|
97
|
-
env: TEST=true ALLOW_FAILURE=true
|
98
|
-
- node_js: "5.5"
|
99
|
-
env: TEST=true ALLOW_FAILURE=true
|
100
|
-
- node_js: "5.4"
|
101
|
-
env: TEST=true ALLOW_FAILURE=true
|
102
|
-
- node_js: "5.3"
|
103
|
-
env: TEST=true ALLOW_FAILURE=true
|
104
|
-
- node_js: "5.2"
|
105
|
-
env: TEST=true ALLOW_FAILURE=true
|
106
|
-
- node_js: "5.1"
|
107
|
-
env: TEST=true ALLOW_FAILURE=true
|
108
|
-
- node_js: "5.0"
|
109
|
-
env: TEST=true ALLOW_FAILURE=true
|
110
|
-
- node_js: "4.7"
|
111
|
-
env: TEST=true ALLOW_FAILURE=true
|
112
|
-
- node_js: "4.6"
|
113
|
-
env: TEST=true ALLOW_FAILURE=true
|
114
|
-
- node_js: "4.5"
|
115
|
-
env: TEST=true ALLOW_FAILURE=true
|
116
|
-
- node_js: "4.4"
|
117
|
-
env: TEST=true ALLOW_FAILURE=true
|
118
|
-
- node_js: "4.3"
|
119
|
-
env: TEST=true ALLOW_FAILURE=true
|
120
|
-
- node_js: "4.2"
|
121
|
-
env: TEST=true ALLOW_FAILURE=true
|
122
|
-
- node_js: "4.1"
|
123
|
-
env: TEST=true ALLOW_FAILURE=true
|
124
|
-
- node_js: "4.0"
|
125
|
-
env: TEST=true ALLOW_FAILURE=true
|
126
|
-
- node_js: "iojs-v3.2"
|
127
|
-
env: TEST=true ALLOW_FAILURE=true
|
128
|
-
- node_js: "iojs-v3.1"
|
129
|
-
env: TEST=true ALLOW_FAILURE=true
|
130
|
-
- node_js: "iojs-v3.0"
|
131
|
-
env: TEST=true ALLOW_FAILURE=true
|
132
|
-
- node_js: "iojs-v2.4"
|
133
|
-
env: TEST=true ALLOW_FAILURE=true
|
134
|
-
- node_js: "iojs-v2.3"
|
135
|
-
env: TEST=true ALLOW_FAILURE=true
|
136
|
-
- node_js: "iojs-v2.2"
|
137
|
-
env: TEST=true ALLOW_FAILURE=true
|
138
|
-
- node_js: "iojs-v2.1"
|
139
|
-
env: TEST=true ALLOW_FAILURE=true
|
140
|
-
- node_js: "iojs-v2.0"
|
141
|
-
env: TEST=true ALLOW_FAILURE=true
|
142
|
-
- node_js: "iojs-v1.7"
|
143
|
-
env: TEST=true ALLOW_FAILURE=true
|
144
|
-
- node_js: "iojs-v1.6"
|
145
|
-
env: TEST=true ALLOW_FAILURE=true
|
146
|
-
- node_js: "iojs-v1.5"
|
147
|
-
env: TEST=true ALLOW_FAILURE=true
|
148
|
-
- node_js: "iojs-v1.4"
|
149
|
-
env: TEST=true ALLOW_FAILURE=true
|
150
|
-
- node_js: "iojs-v1.3"
|
151
|
-
env: TEST=true ALLOW_FAILURE=true
|
152
|
-
- node_js: "iojs-v1.2"
|
153
|
-
env: TEST=true ALLOW_FAILURE=true
|
154
|
-
- node_js: "iojs-v1.1"
|
155
|
-
env: TEST=true ALLOW_FAILURE=true
|
156
|
-
- node_js: "iojs-v1.0"
|
157
|
-
env: TEST=true ALLOW_FAILURE=true
|
158
|
-
- node_js: "0.11"
|
159
|
-
env: TEST=true ALLOW_FAILURE=true
|
160
|
-
- node_js: "0.9"
|
161
|
-
env: TEST=true ALLOW_FAILURE=true
|
162
|
-
- node_js: "0.6"
|
163
|
-
env: TEST=true ALLOW_FAILURE=true
|
164
|
-
- node_js: "0.4"
|
165
|
-
env: TEST=true ALLOW_FAILURE=true
|
166
|
-
allow_failures:
|
167
|
-
- os: osx
|
168
|
-
- env: TEST=true ALLOW_FAILURE=true
|