aws-sdk 2.637.0 → 2.641.0
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/CHANGELOG.md +23 -1
- package/README.md +1 -1
- package/apis/apigatewayv2-2018-11-29.min.json +437 -73
- package/apis/cognito-idp-2016-04-18.min.json +115 -112
- package/apis/ecs-2014-11-13.min.json +6 -0
- package/apis/elasticache-2015-02-02.min.json +424 -95
- package/apis/elasticache-2015-02-02.paginators.json +6 -0
- package/apis/iot-2015-05-28.min.json +111 -100
- package/apis/lex-models-2017-04-19.min.json +116 -1
- package/apis/mediaconvert-2017-08-29.min.json +121 -62
- package/apis/redshift-2012-12-01.min.json +112 -60
- package/apis/s3control-2018-08-20.min.json +100 -4
- package/apis/securityhub-2018-10-26.min.json +198 -155
- package/apis/ssm-2014-11-06.min.json +182 -176
- package/buildspec.yml +22 -0
- package/clients/apigatewayv2.d.ts +378 -45
- package/clients/appconfig.d.ts +6 -6
- package/clients/cognitoidentityserviceprovider.d.ts +10 -6
- package/clients/ec2.d.ts +1 -1
- package/clients/ecs.d.ts +15 -7
- package/clients/efs.d.ts +3 -3
- package/clients/elasticache.d.ts +390 -15
- package/clients/iot.d.ts +18 -3
- package/clients/lexmodelbuildingservice.d.ts +99 -0
- package/clients/mediaconvert.d.ts +73 -3
- package/clients/redshift.d.ts +44 -2
- package/clients/s3control.d.ts +72 -0
- package/clients/securityhub.d.ts +85 -4
- package/clients/ssm.d.ts +15 -4
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +14 -14
- package/dist/aws-sdk.js +1076 -548
- package/dist/aws-sdk.min.js +63 -63
- package/lib/core.js +1 -1
- package/lib/event_listeners.js +1 -1
- package/package.json +1 -1
package/buildspec.yml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
version: 0.2
|
|
2
|
+
|
|
3
|
+
env:
|
|
4
|
+
variables:
|
|
5
|
+
AWS_REGION: "us-west-2"
|
|
6
|
+
NODE_PATH: "/root/.nvm/v8.11.3/lib/node_modules"
|
|
7
|
+
PATH: "/root/.nvm/versions/node/v8.11.3/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
|
8
|
+
|
|
9
|
+
phases:
|
|
10
|
+
pre_build:
|
|
11
|
+
commands:
|
|
12
|
+
- echo use node 8.11.3
|
|
13
|
+
- export NVM_DIR=~/.nvm && source ~/.nvm/nvm.sh && nvm install 8.11.3
|
|
14
|
+
- echo use npm 3.10.10
|
|
15
|
+
- npm install -g npm@3.10.10
|
|
16
|
+
- echo Install npm dependencies
|
|
17
|
+
- npm install
|
|
18
|
+
- gem install rake
|
|
19
|
+
build:
|
|
20
|
+
commands:
|
|
21
|
+
- echo Running Test
|
|
22
|
+
- npm run test
|