cfnlego 0.2.4 → 0.2.5
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 +4 -4
- data/lib/cfnlego/resources/AWS/S3/Bucket.yaml +24 -3
- data/lib/cfnlego/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52eab194c2279f41ef6dde63b9e3572bbe968389
|
4
|
+
data.tar.gz: d58d043461ee6a67e58553b1cbd75bc500243454
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fda729e526dceb1809c6acde5487665fc89a175bdc7e6bc6911aed6c944065885ed119cd813e5d90f9b0155bb6ac960af4bcfcf7b5cee833aceebd4bdff2efbb
|
7
|
+
data.tar.gz: e183a278f615e62d83bf463b5c77b05d3242c9dea60be1f078250faf0c06354e972b89ebf2f7d28b81dfd62339c54fbbf999e1569715e3ec0cb8b060ca6750b3
|
@@ -42,7 +42,14 @@ AWS::S3::Bucket:
|
|
42
42
|
{
|
43
43
|
"Event" => "s3:ObjectCreated:* s3:ObjectCreated:Put s3:ObjectCreated:Post s3:ObjectCreated:Copy s3:ObjectCreated:CompleteMultipartUpload s3:ObjectRemoved:* s3:ObjectRemoved:Delete s3:ObjectRemoved:DeleteMarkerCreated s3:ReducedRedundancyLostObject",
|
44
44
|
"Filter" => {
|
45
|
-
"S3Key" =>
|
45
|
+
"S3Key" =>{
|
46
|
+
"Rules" => [
|
47
|
+
{
|
48
|
+
"Name" => "Whether the filter matches the prefix or suffix of object key names. valid values are: prefix or suffix",
|
49
|
+
"Value" => "Specifies the object key name prefix or suffix to filter on."
|
50
|
+
}
|
51
|
+
]
|
52
|
+
},
|
46
53
|
},
|
47
54
|
"Function" => "The Amazon Resource Name (ARN) of the Lambda function that Amazon S3 invokes when the specified event type occurs."
|
48
55
|
}
|
@@ -51,7 +58,14 @@ AWS::S3::Bucket:
|
|
51
58
|
{
|
52
59
|
"Event" => "s3:ObjectCreated:* s3:ObjectCreated:Put s3:ObjectCreated:Post s3:ObjectCreated:Copy s3:ObjectCreated:CompleteMultipartUpload s3:ObjectRemoved:* s3:ObjectRemoved:Delete s3:ObjectRemoved:DeleteMarkerCreated s3:ReducedRedundancyLostObject",
|
53
60
|
"Filter" => {
|
54
|
-
"S3Key" =>
|
61
|
+
"S3Key" =>{
|
62
|
+
"Rules" => [
|
63
|
+
{
|
64
|
+
"Name" => "Whether the filter matches the prefix or suffix of object key names. valid values are: prefix or suffix",
|
65
|
+
"Value" => "Specifies the object key name prefix or suffix to filter on."
|
66
|
+
}
|
67
|
+
]
|
68
|
+
},
|
55
69
|
"Queue" => "The Amazon Resource Name (ARN) of the Amazon SQS queue that Amazon S3 publishes messages to when the specified event type occurs."
|
56
70
|
}
|
57
71
|
}
|
@@ -60,7 +74,14 @@ AWS::S3::Bucket:
|
|
60
74
|
{
|
61
75
|
"Event" => "s3:ObjectCreated:* s3:ObjectCreated:Put s3:ObjectCreated:Post s3:ObjectCreated:Copy s3:ObjectCreated:CompleteMultipartUpload s3:ObjectRemoved:* s3:ObjectRemoved:Delete s3:ObjectRemoved:DeleteMarkerCreated s3:ReducedRedundancyLostObject",
|
62
76
|
"Filter" => {
|
63
|
-
"S3Key" =>
|
77
|
+
"S3Key" =>{
|
78
|
+
"Rules" => [
|
79
|
+
{
|
80
|
+
"Name" => "Whether the filter matches the prefix or suffix of object key names. valid values are: prefix or suffix",
|
81
|
+
"Value" => "Specifies the object key name prefix or suffix to filter on."
|
82
|
+
}
|
83
|
+
]
|
84
|
+
},
|
64
85
|
"Topic" => "The Amazon SNS topic to which Amazon S3 reports the specified events."
|
65
86
|
}
|
66
87
|
}
|
data/lib/cfnlego/version.rb
CHANGED