convection 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b1c6853a4239bdd6a80df2c8b34211d5051f1471
4
- data.tar.gz: 4ef5f4822803bba1161bb31e6613be475f78cc32
3
+ metadata.gz: 28794b0bf83508a07221ce39fb4618d474b4661b
4
+ data.tar.gz: 2e5fff11023f29aeac41e943885b47cd7e0d7746
5
5
  SHA512:
6
- metadata.gz: b2ad154fc56465c6440dc174f803a48bd5fa715c4ad23db83182d8ef24dad770f96e2f998c56779c60198a49a4db2d839780abbd4c128ba5c568a2de4b49ad73
7
- data.tar.gz: 3136920fadb9fabccdbf5953efca1feed7a6804ebf186b4819904f6e138828e0de8f8b6ec2b2fc72973b538df4a657d88cfbed16b7bf82e4a71bc65bd7139deb
6
+ metadata.gz: 003097ab01fecbeb958fa111b850b5e8898c562a5fe3800229a3d528728b232805cb0ca77a76b1932bc6cb1b5bd4f71ca37a3bad973fe496e15ef9a0ea48efca
7
+ data.tar.gz: 48256617657cc9ddb72e3b46c520ff5c6eedb4986355b1114c982a9af4d309eeada53d07ea6933f6edc6d0bcae7c0748dc9ea9433c15193d4c8794feb47b7680
@@ -0,0 +1,29 @@
1
+ require_relative '../resource'
2
+
3
+ module Convection
4
+ module Model
5
+ class Template
6
+ class Resource
7
+ # @example
8
+ # rds_event_subscription 'myEventSubscription' do
9
+ # event_category 'configuration change'
10
+ # event_category 'failure'
11
+ # event_category 'deletion'
12
+ # sns_topic_arn 'arn:aws:sns:us-west-2:123456789012:example-topic'
13
+ # source_id 'db-instance-1'
14
+ # source_id fn_ref('myDBInstance')
15
+ # source_type 'db-instance'
16
+ # enabled false
17
+ # end
18
+ class RDSEventSubscription < Resource
19
+ type 'AWS::RDS::EventSubscription'
20
+ property :enabled, 'Enabled'
21
+ property :event_category, 'EventCategories', :type => :list
22
+ property :sns_topic_arn, 'SnsTopicArn'
23
+ property :source_id, 'SourceIds', :type => :list
24
+ property :source_type, 'SourceType'
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: convection
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Manero
@@ -191,6 +191,7 @@ files:
191
191
  - lib/convection/model/template/resource/aws_rds_db_parameter_group.rb
192
192
  - lib/convection/model/template/resource/aws_rds_db_security_group.rb
193
193
  - lib/convection/model/template/resource/aws_rds_db_subnet_group.rb
194
+ - lib/convection/model/template/resource/aws_rds_event_subscription.rb
194
195
  - lib/convection/model/template/resource/aws_route53_health_check.rb
195
196
  - lib/convection/model/template/resource/aws_route53_hosted_zone.rb
196
197
  - lib/convection/model/template/resource/aws_route53_recordset.rb