LoginSignup
4
2

More than 5 years have passed since last update.

CloudFormationでストリーム名を指定してKinesisストリームを作成できるようになった!

Posted at

2016/06/09のアップデートでストリーム名を指定してKinesisストリームを作成することができるようになりました!

詳しい方法は下記をご参照ください。
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html

ここでは簡単にCloudFormationに用いるJsonをご紹介します。
と言ってもかなり直感的で、Nameを指定してあげたらいけます。

sample
{
  "AWSTemplateFormatVersion" : "2010-09-09",

  "Resources" : {
    "KinesisSample": {
       "Type" : "AWS::Kinesis::Stream",
       "Properties" : {
          "Name" : "Kinesisストリーム名",
          "ShardCount" : シャード数
       }
    }
  }
}

ストリーム名を指定するために、わざわざKinesisストリームを別の手段で作成していたケースにおいて、CloudFormationに集約することができるようになりました!

4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2