AWS SAM + Firehose

0

Hi,

I know that Kinesis Data Stream has native support on SAM to create serverless Apps. However, when checking the docs, I've found nothing about SAM and Firehose

Kinesis exists as source mapping.

In this blog I found SAM + Firehose integration, however, the docs says nothing about this (unless I'm not reviewing properly)

Regards

Jona

1 Answer
0
Accepted Answer

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.

profile picture
EXPERT
answered 2 months ago
EXPERT
reviewed 2 months ago
  • Thanks a lot !