cfnlego 0.3.3 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 359ee9a25fe06fe956e5f42c42d124541753cf6d
4
- data.tar.gz: 6175c5c2e025e8d7c98c840fe9d558d05b541b90
3
+ metadata.gz: cb90ed1493f1c1c1dc6e41818e0b89d85c80441b
4
+ data.tar.gz: 5b805e0afeeb52e0800a1169234b1bf29f180e65
5
5
  SHA512:
6
- metadata.gz: d372d299da4694c2cde4974ae0145ae3c2274d627e20b690c33f08200c53e5dcd9273264a78a3c21aa3f625cd51168a9e20d4a71fd593c84d17f5d37721a722d
7
- data.tar.gz: 56b4479803326395c3ff81e050bd98537d913e9af80b1721c8a1973f6c9b2c790cd108e63e3a466d185f7942b6b6961310ed1f53cd09f9961f5146a1c440bb03
6
+ metadata.gz: 8fa14dc87585a9f592f19cdadd57fc395a6d145de3cefbc03bc44fc9ef93edf442b51b1f5b59822100c660827a42133cf7b8e763e49dafea833ede355e7925de
7
+ data.tar.gz: 547930d66dc3f4b02d442a2c8fdbda7cfd236deca9000633b534bf1be85076300c70d82c2fb848cf40320918b7d8acdabffd5aea5cb409d2a2a4037149a5a44e
data/README.md CHANGED
@@ -68,6 +68,7 @@ Example:
68
68
  - AWS::ElastiCache::SecurityGroupIngress
69
69
  - AWS::ElastiCache::SubnetGroup
70
70
  - AWS::ElasticLoadBalancing::LoadBalancer
71
+ - AWS::Events::Rule
71
72
  - AWS::IAM::InstanceProfile
72
73
  - AWS::IAM::ManagedPolicy
73
74
  - AWS::IAM::Role
@@ -0,0 +1,22 @@
1
+ AWS::SQS::Queue:
2
+ Properties:
3
+ DelaySeconds: "\"Integrer, Valid value from 0 to 900, Default: 0\""
4
+ MaximumMessageSize: "\"The limit of how many bytes a message can contain before Amazon SQS rejects it. You can specify an integer value from 1024 bytes (1 KiB) to 262144 bytes (256 KiB). The default value is 262144 (256 KiB).\""
5
+ MessageRetentionPeriod: "\"The number of seconds Amazon SQS retains a message. You can specify an integer value from 60 seconds (1 minute) to 1209600 seconds (14 days). The default value is 345600 seconds (4 days).\""
6
+ QueueName: "\"A name for the queue. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the queue name. For more information\""
7
+ ReceiveMessageWaitTimeSeconds: "\"Specifies the duration, in seconds, that the ReceiveMessage action call waits until a message is in the queue in order to include it in the response, as opposed to returning an empty response if a message is not yet available. You can specify an integer from 1 to 20. The short polling is used as the default or when you specify 0 for this property.\""
8
+ RedrivePolicy: |
9
+ {
10
+ "deadLetterTargetArn" => "The Amazon Resource Name (ARN) of the dead letter queue to which the messages are sent to after the maxReceiveCount value has been exceeded.",
11
+ "maxReceiveCount" => "The number of times a message is delivered to the source queue before being sent to the dead letter queue."
12
+ }
13
+ VisibilityTimeout: "\"The length of time during which the queue will be unavailable once a message is delivered from the queue. This blocks other components from receiving the same message and gives the initial component time to process and delete the message from the queue. Values must be from 0 to 43200 seconds (12 hours). If no value is specified, the default value of 30 seconds will be used.\""
14
+ DisplayName: "\"string to identify the topici, optional field\""
15
+ Subscription: |
16
+ [
17
+ {
18
+ "Endpoint" => "http|https|@|phone-number|SQS Queue|EndpointArn of Mobile App/device|Lambda Arn",
19
+ "Protocol" => "http|https|email|email-json|sms|sqs|application|lambda"
20
+ }
21
+ ]
22
+ TopicName: "\"A name for the topic, optional\""
@@ -1,3 +1,3 @@
1
1
  module Cfnlego
2
- VERSION='0.3.3'
2
+ VERSION='0.3.4'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cfnlego
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Yung
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-06 00:00:00.000000000 Z
11
+ date: 2016-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-beautify
@@ -145,6 +145,7 @@ files:
145
145
  - lib/cfnlego/resources/AWS/S3/Bucket.yaml
146
146
  - lib/cfnlego/resources/AWS/SNS/Topic.yaml
147
147
  - lib/cfnlego/resources/AWS/SNS/TopicPolicy.yaml
148
+ - lib/cfnlego/resources/AWS/SQS/Queue.yaml
148
149
  - lib/cfnlego/version.rb
149
150
  - utils/list-supported-resources.sh
150
151
  homepage: https://github.com/allinwonder/cfnlego