Amazon Kinesis · Arazzo Workflow
Amazon Kinesis Create and Activate Stream
Version 1.0.0
Create a Kinesis data stream and poll until it reaches ACTIVE status.
Provider
Workflows
create-and-activate-stream
Create a provisioned Kinesis data stream and wait until it is ACTIVE.
Calls CreateStream with the supplied name and shard count, then polls DescribeStreamSummary, looping while the status is CREATING and ending once the status becomes ACTIVE.
1
createStream
CreateStream
Create the data stream in PROVISIONED mode with the requested shard count. The stream is returned immediately in CREATING status.
2
pollStatus
DescribeStreamSummary
Read the stream summary to check its current status. While the status is CREATING the step loops back to poll again; once ACTIVE the workflow ends.