Merge pull request #1020 from jonathannaguin/master

Added missing description field to the ApiGateway deploy method [Fixes #1019]
This commit is contained in:
Austen 2016-04-18 09:53:38 -07:00
commit 28dd86b652

View File

@ -205,7 +205,8 @@ module.exports = function(S) {
region: this.evt.options.region,
names: this.endpoints,
aliasEndpoint: this.evt.options.aliasEndpoint,
aliasRestApi: this.evt.options.aliasRestApi
aliasRestApi: this.evt.options.aliasRestApi,
description: this.evt.options.description
}
};
@ -218,4 +219,4 @@ module.exports = function(S) {
}
return( EndpointDeploy );
};
};