Firehose
Delivery streams to S3, Redshift, OpenSearch, Splunk, Snowflake, HTTP.
Quick start
import boto3
fh = boto3.client("firehose", endpoint_url="http://localhost:4566",
region_name="us-east-1",
aws_access_key_id="test", aws_secret_access_key="test")
fh.create_delivery_stream(DeliveryStreamName="d",
S3DestinationConfiguration={"RoleARN":"arn:...","BucketARN":"arn:aws:s3:::bkt"})
fh.put_record(DeliveryStreamName="d", Record={"Data":b"hello"})
Supported operations
12 operations exposed by this service as of MiniStack 1.3.14. Extracted directly from the handler dispatch in the source module.
CreateDeliveryStream
DeleteDeliveryStream
DescribeDeliveryStream
ListDeliveryStreams
ListTagsForDeliveryStream
PutRecord
PutRecordBatch
StartDeliveryStreamEncryption
StopDeliveryStreamEncryption
TagDeliveryStream
UntagDeliveryStream
UpdateDestination
CloudFormation
No CloudFormation resource types map to this service yet. Resources can still be created via the SDK or CLI.
Known limitations
- Only S3 destinations actually write data. Redshift / OpenSearch / Splunk / Snowflake / HTTP destinations are metadata only.
Source
ministack/services/firehose.py:567-627
Read the source to verify the ops list above — dispatch tables and handler functions are the ground truth.