aws-dynamodb icon indicating copy to clipboard operation
aws-dynamodb copied to clipboard

⚡ Easily provision AWS DynamoDB tables using Serverless Components.

Results 11 aws-dynamodb issues
Sort by recently updated
recently updated
newest added

Hi, I'm trying to add a database (dynamodb) into my serverless file, however I get this error: ``` error: TypeError: childComponentInstance.init is not a function at Template.load (/usr/local/lib/node_modules/serverless/node_modules/@serverless/core/src/Component.js:116:34) at async...

(node:16576) UnhandledPromiseRejectionWarning: Error: Unexpected Serverless Platform Streaming Error: WebSocket was closed before the connection was established at WebSocket.self.connection.onerror (/usr/local/lib/node_modules/serverless/node_modules/@serverless/platform-client/src/Connection.js:106:13) at WebSocket.onError (/usr/local/lib/node_modules/serverless/node_modules/ws/lib/event-target.js:140:16) at WebSocket.emit (events.js:400:28) at abortHandshake (/usr/local/lib/node_modules/serverless/node_modules/ws/lib/websocket.js:896:15) at WebSocket.close...

```yml inputs: name: ${name}-${stage} attributeDefinitions: - AttributeName: mobileNumber AttributeType: S - AttributeName: orderId AttributeType: S - AttributeName: isSettle AttributeType: BOOL ``` 1 validation error detected: Value 'BOOL' at 'attributeDefinitions.3.member.attributeType' failed...

Do we need a different component for every table?

…definition I was unfortunately unable to get any of the tests to work locally, but added a commented line to existing test to allow retrieval and checking of the TTL...

It would be great to get support to be able to set the following settings. - Point-in-time recovery - Encryption Type Apologies if i missed them in the docs or...

enhancement

Would it make sense to support streams in this component, or add that functionality with another? For example, we could add streams to the createTable method in utils.js: ```js async...

This component be able to be used with dynamodb local. This could be accomplished by implementing a method on the component: describeTable, that would output the cloudformation used to create...

the passwordless component could use the TTL setting to clean up expired codes. Check here for more details: https://github.com/serverless-components/passwordless/issues/4

enhancement