-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamo Stream Support #2
Comments
This would definitely belong in this component and we would love to have that. How do you think this would look like as YAML inputs? 🤔 |
we could just have an optional flag: myTable:
component: '@serverless/aws-dynamodb'
inputs:
attributeDefinitions:
- AttributeName: id
AttributeType: S
keySchema:
- AttributeName: id
KeyType: HASH
region: us-east-1
stream: true
|
I think it might be useful to allow people to set the type of stream, which would make this more flexible. Maybe something like: myTable:
component: '@serverless/aws-dynamodb'
inputs:
attributeDefinitions:
- AttributeName: id
AttributeType: S
keySchema:
- AttributeName: id
KeyType: HASH
region: us-east-1
streamViewType: NEW_IMAGE |
What about triggers? I would add triggers and necessary access roles here. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
The text was updated successfully, but these errors were encountered: