Amazon Kinesis Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 7: Line 7:
{{External|[https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_Kinesis.html AWS Kinesis]}}
{{External|[https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_Kinesis.html AWS Kinesis]}}


==AWS::==
==AWS::Kinesis::Stream==
 
{{External|[https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html AWS::Kinesis::Stream]}}
 
Resources:
  SomeKinesisStream:
    Type: AWS::Kinesis::Stream
    Properties :
      Name: test-stream
      RetentionPeriodHours: 24
      ShardCount: 1
      Tags:
        - Key: Name
          Value: test-stream

Latest revision as of 21:36, 27 April 2019

Internal

CloudFormation Support

AWS Kinesis

AWS::Kinesis::Stream

AWS::Kinesis::Stream
Resources:
  SomeKinesisStream:
    Type: AWS::Kinesis::Stream
    Properties :
      Name: test-stream
      RetentionPeriodHours: 24
      ShardCount: 1
      Tags:
        - Key: Name
          Value: test-stream