1 Answer
- Newest
- Most votes
- Most comments
0
Hello.
The following document you are reviewing is how to configure Kinesis as an event source when creating a Lambda with AWS SAM.
https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-property-function-kinesis.html
To actually create Kinesis, you need to create it with "AWS::KinesisFirehose::DeliveryStream" as shown in the following document you are checking.
https://serverlessland.com/patterns/lambda-kinesis-firehose-s3-sam-java
AWS SAM is an extension of CloudFormation, so you need to create Kinesis in the same way as CloudFormation.
Relevant content
- asked 9 months ago
- asked 3 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 3 years ago
Thanks a lot !