900 B
900 B
title, meta_desc, meta_image, service, description, aws_here, menu, aliases
title | meta_desc | meta_image | service | description | aws_here | menu | aliases | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Creating an AWS Kinesis Data Service with Pulumi | Learn how to use Pulumi to define an AWS Kinesis resource which can then be deployed to AWS and managed as infrastructure as code. | /images/docs/service/aws-kinesis.png | Kinesis | makes it easy to collect, process, and analyze real-time, streaming data so you can get timely insights and react quickly to new information | https://aws.amazon.com/kinesis/ |
|
|
Create an AWS Kinesis resource using @pulumi/aws
The @pulumi/aws
library enables fine-grained control over the AWS Kinesis resource meaning it can be coded, deployed, and managed entirely in code.
const aws = require("@pulumi/aws");
const stream = new aws.kinesis.Stream("mystream", {
shardCount: 1
});