convection 1.0.6 → 1.0.7
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be6c1a790e3d66d1a1a1907e2543e339a5f39227
|
4
|
+
data.tar.gz: b21f7e968d922e636e1bbd780d4e1080de55e7f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1026937d7b8a85c2396e6b741ce25db204a17be364a3250e8a7af982aac83496c768f30be8616f4c2406d3aa5223350f2d27ac312c8b0d6e933df71d9ee592c7
|
7
|
+
data.tar.gz: 6a71da2ecd5bdbc36072ea60adad59cfbb48f43c58f72cd3159146735dd7dcf3b6ded426cafcdf72cb23b427cee153660e60787e779b6c467004a7c6c2be4197
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require_relative '../resource'
|
2
|
+
|
3
|
+
module Convection
|
4
|
+
module Model
|
5
|
+
class Template
|
6
|
+
class Resource
|
7
|
+
##
|
8
|
+
# AWS::Logs::SubscriptionFilter
|
9
|
+
#
|
10
|
+
# @example
|
11
|
+
# logs_subscription_filter 'TestSubscriptionFilter' do
|
12
|
+
# destination_arn 'arn:aws:logs:us-east-1:123456789012:destination:testDestination'
|
13
|
+
# filter_pattern '{$.userIdentity.type = Root}'
|
14
|
+
# log_group_name 'CloudTrail'
|
15
|
+
# role_arn 'arn:aws:iam::123456789012:role/Root'
|
16
|
+
# end
|
17
|
+
##
|
18
|
+
class SubscriptionFilter < Resource
|
19
|
+
type 'AWS::Logs::SubscriptionFilter'
|
20
|
+
property :destination_arn, 'DestinationArn'
|
21
|
+
property :filter_pattern, 'FilterPattern'
|
22
|
+
property :log_group_name, 'LogGroupName'
|
23
|
+
property :role_arn, 'RoleArn'
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
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: 1.0.
|
4
|
+
version: 1.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Manero
|
@@ -199,6 +199,7 @@ files:
|
|
199
199
|
- lib/convection/model/template/resource/aws_lambda_permission.rb
|
200
200
|
- lib/convection/model/template/resource/aws_lambda_version.rb
|
201
201
|
- lib/convection/model/template/resource/aws_logs_loggroup.rb
|
202
|
+
- lib/convection/model/template/resource/aws_logs_subscription_filter.rb
|
202
203
|
- lib/convection/model/template/resource/aws_rds_db_instance.rb
|
203
204
|
- lib/convection/model/template/resource/aws_rds_db_parameter_group.rb
|
204
205
|
- lib/convection/model/template/resource/aws_rds_db_security_group.rb
|