humidifier 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (185) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +88 -0
  4. data/ext/humidifier/extconf.rb +2 -0
  5. data/ext/humidifier/humidifier.c +93 -0
  6. data/ext/humidifier/humidifier.h +14 -0
  7. data/lib/humidifier/aws_adapters/base.rb +64 -0
  8. data/lib/humidifier/aws_adapters/noop.rb +18 -0
  9. data/lib/humidifier/aws_adapters/sdkv1.rb +56 -0
  10. data/lib/humidifier/aws_adapters/sdkv2.rb +43 -0
  11. data/lib/humidifier/aws_shim.rb +60 -0
  12. data/lib/humidifier/condition.rb +17 -0
  13. data/lib/humidifier/fn.rb +28 -0
  14. data/lib/humidifier/humidifier.bundle +0 -0
  15. data/lib/humidifier/loader.rb +53 -0
  16. data/lib/humidifier/mapping.rb +17 -0
  17. data/lib/humidifier/output.rb +20 -0
  18. data/lib/humidifier/parameter.rb +27 -0
  19. data/lib/humidifier/props.rb +127 -0
  20. data/lib/humidifier/ref.rb +17 -0
  21. data/lib/humidifier/resource.rb +108 -0
  22. data/lib/humidifier/sdk_payload.rb +30 -0
  23. data/lib/humidifier/serializer.rb +18 -0
  24. data/lib/humidifier/sleeper.rb +25 -0
  25. data/lib/humidifier/stack.rb +66 -0
  26. data/lib/humidifier/utils.rb +21 -0
  27. data/lib/humidifier/version.rb +4 -0
  28. data/lib/humidifier.rb +50 -0
  29. data/specs/ApiGateway-Account.cf +6 -0
  30. data/specs/ApiGateway-ApiKey.cf +9 -0
  31. data/specs/ApiGateway-Authorizer.cf +13 -0
  32. data/specs/ApiGateway-BasePathMapping.cf +9 -0
  33. data/specs/ApiGateway-ClientCertificate.cf +6 -0
  34. data/specs/ApiGateway-Deployment.cf +9 -0
  35. data/specs/ApiGateway-Method.cf +15 -0
  36. data/specs/ApiGateway-Model.cf +10 -0
  37. data/specs/ApiGateway-Resource.cf +8 -0
  38. data/specs/ApiGateway-RestApi.cf +12 -0
  39. data/specs/ApiGateway-Stage.cf +14 -0
  40. data/specs/AutoScaling-AutoScalingGroup.cf +21 -0
  41. data/specs/AutoScaling-LaunchConfiguration.cf +22 -0
  42. data/specs/AutoScaling-LifecycleHook.cf +12 -0
  43. data/specs/AutoScaling-ScalingPolicy.cf +14 -0
  44. data/specs/AutoScaling-ScheduledAction.cf +12 -0
  45. data/specs/CloudFormation-Authentication.cf +18 -0
  46. data/specs/CloudFormation-CustomResource.cf +8 -0
  47. data/specs/CloudFormation-Interface.cf +9 -0
  48. data/specs/CloudFormation-Stack.cf +10 -0
  49. data/specs/CloudFormation-WaitCondition.cf +8 -0
  50. data/specs/CloudFormation-WaitConditionHandle.cf +5 -0
  51. data/specs/CloudFront-Distribution.cf +6 -0
  52. data/specs/CloudTrail-Trail.cf +16 -0
  53. data/specs/CloudWatch-Alarm.cf +20 -0
  54. data/specs/CodeDeploy-Application.cf +6 -0
  55. data/specs/CodeDeploy-DeploymentConfig.cf +7 -0
  56. data/specs/CodeDeploy-DeploymentGroup.cf +13 -0
  57. data/specs/CodePipeline-CustomActionType.cf +12 -0
  58. data/specs/CodePipeline-Pipeline.cf +11 -0
  59. data/specs/Config-ConfigRule.cf +11 -0
  60. data/specs/Config-ConfigurationRecorder.cf +8 -0
  61. data/specs/Config-DeliveryChannel.cf +10 -0
  62. data/specs/DataPipeline-Pipeline.cf +12 -0
  63. data/specs/DirectoryService-MicrosoftAD.cf +11 -0
  64. data/specs/DirectoryService-SimpleAD.cf +13 -0
  65. data/specs/DynamoDB-Table.cf +12 -0
  66. data/specs/EC2-CustomerGateway.cf +9 -0
  67. data/specs/EC2-DHCPOptions.cf +11 -0
  68. data/specs/EC2-EIP.cf +7 -0
  69. data/specs/EC2-EIPAssociation.cf +10 -0
  70. data/specs/EC2-FlowLog.cf +10 -0
  71. data/specs/EC2-Host.cf +8 -0
  72. data/specs/EC2-Instance.cf +32 -0
  73. data/specs/EC2-InternetGateway.cf +6 -0
  74. data/specs/EC2-NatGateway.cf +7 -0
  75. data/specs/EC2-NetworkAcl.cf +7 -0
  76. data/specs/EC2-NetworkAclEntry.cf +13 -0
  77. data/specs/EC2-NetworkInterface.cf +13 -0
  78. data/specs/EC2-NetworkInterfaceAttachment.cf +9 -0
  79. data/specs/EC2-PlacementGroup.cf +6 -0
  80. data/specs/EC2-Route.cf +12 -0
  81. data/specs/EC2-RouteTable.cf +7 -0
  82. data/specs/EC2-SecurityGroup.cf +10 -0
  83. data/specs/EC2-SecurityGroupEgress.cf +11 -0
  84. data/specs/EC2-SecurityGroupIngress.cf +14 -0
  85. data/specs/EC2-SpotFleet.cf +6 -0
  86. data/specs/EC2-Subnet.cf +10 -0
  87. data/specs/EC2-SubnetNetworkAclAssociation.cf +5 -0
  88. data/specs/EC2-SubnetRouteTableAssociation.cf +7 -0
  89. data/specs/EC2-VPC.cf +10 -0
  90. data/specs/EC2-VPCDHCPOptionsAssociation.cf +7 -0
  91. data/specs/EC2-VPCEndpoint.cf +9 -0
  92. data/specs/EC2-VPCGatewayAttachment.cf +8 -0
  93. data/specs/EC2-VPCPeeringConnection.cf +8 -0
  94. data/specs/EC2-VPNConnection.cf +10 -0
  95. data/specs/EC2-VPNConnectionRoute.cf +7 -0
  96. data/specs/EC2-VPNGateway.cf +7 -0
  97. data/specs/EC2-VPNGatewayRoutePropagation.cf +7 -0
  98. data/specs/EC2-Volume.cf +14 -0
  99. data/specs/EC2-VolumeAttachment.cf +8 -0
  100. data/specs/ECR-Repository.cf +7 -0
  101. data/specs/ECS-Cluster.cf +6 -0
  102. data/specs/ECS-Service.cf +11 -0
  103. data/specs/ECS-TaskDefinition.cf +7 -0
  104. data/specs/EFS-FileSystem.cf +6 -0
  105. data/specs/EFS-MountTarget.cf +9 -0
  106. data/specs/EMR-Cluster.cf +17 -0
  107. data/specs/EMR-InstanceGroupConfig.cf +14 -0
  108. data/specs/EMR-Step.cf +9 -0
  109. data/specs/ElastiCache-CacheCluster.cf +27 -0
  110. data/specs/ElastiCache-ParameterGroup.cf +8 -0
  111. data/specs/ElastiCache-ReplicationGroup.cf +23 -0
  112. data/specs/ElastiCache-SecurityGroup.cf +7 -0
  113. data/specs/ElastiCache-SecurityGroupIngress.cf +9 -0
  114. data/specs/ElastiCache-SubnetGroup.cf +7 -0
  115. data/specs/ElasticBeanstalk-Application.cf +7 -0
  116. data/specs/ElasticBeanstalk-ApplicationVersion.cf +8 -0
  117. data/specs/ElasticBeanstalk-ConfigurationTemplate.cf +11 -0
  118. data/specs/ElasticBeanstalk-Environment.cf +15 -0
  119. data/specs/ElasticLoadBalancing-LoadBalancer.cf +21 -0
  120. data/specs/Elasticsearch-Domain.cf +12 -0
  121. data/specs/Events-Rule.cf +12 -0
  122. data/specs/GameLift-Alias.cf +8 -0
  123. data/specs/GameLift-Build.cf +8 -0
  124. data/specs/GameLift-Fleet.cf +16 -0
  125. data/specs/IAM-AccessKey.cf +8 -0
  126. data/specs/IAM-Group.cf +8 -0
  127. data/specs/IAM-InstanceProfile.cf +7 -0
  128. data/specs/IAM-ManagedPolicy.cf +11 -0
  129. data/specs/IAM-Policy.cf +10 -0
  130. data/specs/IAM-Role.cf +9 -0
  131. data/specs/IAM-User.cf +10 -0
  132. data/specs/IAM-UserToGroupAddition.cf +7 -0
  133. data/specs/KMS-Key.cf +9 -0
  134. data/specs/Kinesis-Stream.cf +8 -0
  135. data/specs/KinesisFirehose-DeliveryStream.cf +9 -0
  136. data/specs/Lambda-Alias.cf +9 -0
  137. data/specs/Lambda-EventSourceMapping.cf +10 -0
  138. data/specs/Lambda-Function.cf +14 -0
  139. data/specs/Lambda-Permission.cf +10 -0
  140. data/specs/Lambda-Version.cf +8 -0
  141. data/specs/Logs-Destination.cf +9 -0
  142. data/specs/Logs-LogGroup.cf +6 -0
  143. data/specs/Logs-LogStream.cf +7 -0
  144. data/specs/Logs-MetricFilter.cf +8 -0
  145. data/specs/Logs-SubscriptionFilter.cf +9 -0
  146. data/specs/OpsWorks-App.cf +16 -0
  147. data/specs/OpsWorks-ElasticLoadBalancerAttachment.cf +7 -0
  148. data/specs/OpsWorks-Instance.cf +19 -0
  149. data/specs/OpsWorks-Layer.cf +21 -0
  150. data/specs/OpsWorks-Stack.cf +23 -0
  151. data/specs/RDS-DBCluster.cf +23 -0
  152. data/specs/RDS-DBClusterParameterGroup.cf +9 -0
  153. data/specs/RDS-DBInstance.cf +38 -0
  154. data/specs/RDS-DBParameterGroup.cf +9 -0
  155. data/specs/RDS-DBSecurityGroup.cf +10 -0
  156. data/specs/RDS-DBSecurityGroupIngress.cf +10 -0
  157. data/specs/RDS-DBSubnetGroup.cf +8 -0
  158. data/specs/RDS-EventSubscription.cf +10 -0
  159. data/specs/RDS-OptionGroup.cf +10 -0
  160. data/specs/Redshift-Cluster.cf +30 -0
  161. data/specs/Redshift-ClusterParameterGroup.cf +8 -0
  162. data/specs/Redshift-ClusterSecurityGroup.cf +6 -0
  163. data/specs/Redshift-ClusterSecurityGroupIngress.cf +9 -0
  164. data/specs/Redshift-ClusterSubnetGroup.cf +7 -0
  165. data/specs/Route53-HealthCheck.cf +7 -0
  166. data/specs/Route53-HostedZone.cf +9 -0
  167. data/specs/Route53-RecordSet.cf +19 -0
  168. data/specs/Route53-RecordSetGroup.cf +9 -0
  169. data/specs/S3-Bucket.cf +15 -0
  170. data/specs/S3-BucketPolicy.cf +7 -0
  171. data/specs/SDB-Domain.cf +6 -0
  172. data/specs/SNS-Topic.cf +8 -0
  173. data/specs/SNS-TopicPolicy.cf +8 -0
  174. data/specs/SQS-Queue.cf +12 -0
  175. data/specs/SQS-QueuePolicy.cf +7 -0
  176. data/specs/SSM-Document.cf +6 -0
  177. data/specs/WAF-ByteMatchSet.cf +7 -0
  178. data/specs/WAF-IPSet.cf +7 -0
  179. data/specs/WAF-Rule.cf +8 -0
  180. data/specs/WAF-SizeConstraintSet.cf +7 -0
  181. data/specs/WAF-SqlInjectionMatchSet.cf +7 -0
  182. data/specs/WAF-WebACL.cf +9 -0
  183. data/specs/WAF-XssMatchSet.cf +7 -0
  184. data/specs/WorkSpaces-Workspace.cf +11 -0
  185. metadata +356 -0
@@ -0,0 +1,23 @@
1
+ {
2
+ "Type" : "AWS::RDS::DBCluster",
3
+ "Properties" :
4
+ {
5
+ "AvailabilityZones" : [ String, ... ],
6
+ "BackupRetentionPeriod" : Integer,
7
+ "DatabaseName" : String,
8
+ "DBClusterParameterGroupName" : String,
9
+ "DBSubnetGroupName" : String,
10
+ "Engine" : String,
11
+ "EngineVersion" : String,
12
+ "KmsKeyId" : String,
13
+ "MasterUsername" : String,
14
+ "MasterUserPassword" : String,
15
+ "Port" : Integer,
16
+ "PreferredBackupWindow" : String,
17
+ "PreferredMaintenanceWindow" : String,
18
+ "SnapshotIdentifier" : String,
19
+ "StorageEncrypted" : Boolean,
20
+ "Tags" : [ Resource Tag, ... ],
21
+ "VpcSecurityGroupIds" : [ String, ... ]
22
+ }
23
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "Type": "AWS::RDS::DBClusterParameterGroup",
3
+ "Properties" : {
4
+ "Description" : String,
5
+ "Family" : String,
6
+ "Parameters" : DBParameters,
7
+ "Tags" : [ Resource Tag, ... ]
8
+ }
9
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "Type" : "AWS::RDS::DBInstance",
3
+ "Properties" :
4
+ {
5
+ "AllocatedStorage" : String,
6
+ "AllowMajorVersionUpgrade" : Boolean,
7
+ "AutoMinorVersionUpgrade" : Boolean,
8
+ "AvailabilityZone" : String,
9
+ "BackupRetentionPeriod" : String,
10
+ "CharacterSetName" : String,
11
+ "DBClusterIdentifier" : String,
12
+ "DBInstanceClass" : String,
13
+ "DBInstanceIdentifier" : String,
14
+ "DBName" : String,
15
+ "DBParameterGroupName" : String,
16
+ "DBSecurityGroups" : [ String, ... ],
17
+ "DBSnapshotIdentifier" : String,
18
+ "DBSubnetGroupName" : String,
19
+ "Engine" : String,
20
+ "EngineVersion" : String,
21
+ "Iops" : Number,
22
+ "KmsKeyId" : String,
23
+ "LicenseModel" : String,
24
+ "MasterUsername" : String,
25
+ "MasterUserPassword" : String,
26
+ "MultiAZ" : Boolean,
27
+ "OptionGroupName" : String,
28
+ "Port" : String,
29
+ "PreferredBackupWindow" : String,
30
+ "PreferredMaintenanceWindow" : String,
31
+ "PubliclyAccessible" : Boolean,
32
+ "SourceDBInstanceIdentifier" : String,
33
+ "StorageEncrypted" : Boolean,
34
+ "StorageType" : String,
35
+ "Tags" : [ Resource Tag, ..., ],
36
+ "VPCSecurityGroups" : [ String, ... ]
37
+ }
38
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "Type": "AWS::RDS::DBParameterGroup",
3
+ "Properties" : {
4
+ "Description" : String,
5
+ "Family" : String,
6
+ "Parameters" : DBParameters,
7
+ "Tags" : [ Resource Tag, ... ]
8
+ }
9
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "Type" : "AWS::RDS::DBSecurityGroup",
3
+ "Properties" :
4
+ {
5
+ "EC2VpcId" : { "Ref" : "myVPC" },
6
+ "DBSecurityGroupIngress" : [ RDS Security Group Rule object 1, ... ],
7
+ "GroupDescription" : String,
8
+ "Tags" : [ Resource Tag, ... ]
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "Type": "AWS::RDS::DBSecurityGroupIngress",
3
+ "Properties" : {
4
+ "CIDRIP": String,
5
+ "DBSecurityGroupName": String,
6
+ "EC2SecurityGroupId": String,
7
+ "EC2SecurityGroupName": String,
8
+ "EC2SecurityGroupOwnerId": String
9
+ }
10
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "Type" : "AWS::RDS::DBSubnetGroup",
3
+ "Properties" : {
4
+ "DBSubnetGroupDescription" : String,
5
+ "SubnetIds" : [ String, ... ],
6
+ "Tags" : [ Resource Tag, ... ]
7
+ }
8
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "Type" : "AWS::RDS::EventSubscription",
3
+ "Properties" : {
4
+ "Enabled" : Boolean,
5
+ "EventCategories" : [ String, ... ],
6
+ "SnsTopicArn" : String,
7
+ "SourceIds" : [ String, ... ],
8
+ "SourceType" : String
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "Type": "AWS::RDS::OptionGroup",
3
+ "Properties" : {
4
+ "EngineName" : String,
5
+ "MajorEngineVersion" : String,
6
+ "OptionGroupDescription" : String,
7
+ "OptionConfigurations" : [ OptionConfigurations, ... ],
8
+ "Tags" : [ Resource Tag, ... ]
9
+ }
10
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Type": "AWS::Redshift::Cluster",
3
+ "Properties": {
4
+ "AllowVersionUpgrade" : Boolean,
5
+ "AutomatedSnapshotRetentionPeriod" : Integer,
6
+ "AvailabilityZone" : String,
7
+ "ClusterParameterGroupName" : String,
8
+ "ClusterSecurityGroups" : [ String, ... ],
9
+ "ClusterSubnetGroupName" : String,
10
+ "ClusterType" : String,
11
+ "ClusterVersion" : String,
12
+ "DBName" : String,
13
+ "ElasticIp" : String,
14
+ "Encrypted" : Boolean,
15
+ "HsmClientCertificateIdentifier" : String,
16
+ "HsmConfigurationIdentifier" : String,
17
+ "KmsKeyId" : String,
18
+ "MasterUsername" : String,
19
+ "MasterUserPassword" : String,
20
+ "NodeType" : String,
21
+ "NumberOfNodes" : Integer,
22
+ "OwnerAccount" : String,
23
+ "Port" : Integer,
24
+ "PreferredMaintenanceWindow" : String,
25
+ "PubliclyAccessible" : Boolean,
26
+ "SnapshotClusterIdentifier" : String,
27
+ "SnapshotIdentifier" : String,
28
+ "VpcSecurityGroupIds" : [ String, ... ]
29
+ }
30
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "Type": "AWS::Redshift::ClusterParameterGroup",
3
+ "Properties": {
4
+ "Description" : String,
5
+ "ParameterGroupFamily" : String,
6
+ "Parameters" : [ Parameter, ... ]
7
+ }
8
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "Type": "AWS::Redshift::ClusterSecurityGroup",
3
+ "Properties": {
4
+ "Description" : String
5
+ }
6
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "Type": "AWS::Redshift::ClusterSecurityGroupIngress",
3
+ "Properties": {
4
+ "ClusterSecurityGroupName" : String,
5
+ "CIDRIP" : String,
6
+ "EC2SecurityGroupName" : String,
7
+ "EC2SecurityGroupOwnerId" : String
8
+ }
9
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type": "AWS::Redshift::ClusterSubnetGroup",
3
+ "Properties": {
4
+ "Description" : String,
5
+ "SubnetIds" : [ String, ... ]
6
+ }
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type" : "AWS::Route53::HealthCheck",
3
+ "Properties" : {
4
+ "HealthCheckConfig" : { HealthCheckConfig },
5
+ "HealthCheckTags" : [ HealthCheckTags, ... ]
6
+ }
7
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "Type" : "AWS::Route53::HostedZone",
3
+ "Properties" : {
4
+ "HostedZoneConfig" : { HostedZoneConfig },
5
+ "HostedZoneTags" : [ HostedZoneTags, ... ],
6
+ "Name" : String,
7
+ "VPCs" : [ HostedZoneVPCs, ... ]
8
+ }
9
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "Type" : "AWS::Route53::RecordSet",
3
+ "Properties" : {
4
+ "AliasTarget" : AliasTarget,
5
+ "Comment" : String,
6
+ "Failover" : String,
7
+ "GeoLocation" : { GeoLocation },
8
+ "HealthCheckId" : String,
9
+ "HostedZoneId" : String,
10
+ "HostedZoneName" : String,
11
+ "Name" : String,
12
+ "Region" : String,
13
+ "ResourceRecords" : [ String ],
14
+ "SetIdentifier" : String,
15
+ "TTL" : String,
16
+ "Type" : String,
17
+ "Weight" : Integer
18
+ }
19
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "Type" : "AWS::Route53::RecordSetGroup",
3
+ "Properties" : {
4
+ "Comment" : String,
5
+ "HostedZoneId" : String,
6
+ "HostedZoneName" : String,
7
+ "RecordSets" : [ RecordSet1, ... ]
8
+ }
9
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "Type" : "AWS::S3::Bucket",
3
+ "Properties" : {
4
+ "AccessControl" : String,
5
+ "BucketName" : String,
6
+ "CorsConfiguration" : CORS Configuration,
7
+ "LifecycleConfiguration" : Lifecycle Configuration,
8
+ "LoggingConfiguration" : Logging Configuration,
9
+ "NotificationConfiguration" : Notification Configuration,
10
+ "ReplicationConfiguration" : Replication Configuration,
11
+ "Tags" : [ Resource Tag, ... ],
12
+ "VersioningConfiguration" : Versioning Configuration,
13
+ "WebsiteConfiguration" : Website Configuration Type
14
+ }
15
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type" : "AWS::S3::BucketPolicy",
3
+ "Properties" : {
4
+ "Bucket" : String,
5
+ "PolicyDocument" : JSON
6
+ }
7
+ }
@@ -0,0 +1,6 @@
1
+ "MySDBDomain" : {
2
+ "Type" : "AWS::SDB::Domain",
3
+ "Properties" : {
4
+ "Description" : "Other than this AWS CloudFormation Description property, SDB Domains have no properties."
5
+ }
6
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "Type" : "AWS::SNS::Topic",
3
+ "Properties" : {
4
+ "DisplayName" : String,
5
+ "Subscription" : [ SNS Subscription, ... ],
6
+ "TopicName" : String
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "Type" : "AWS::SNS::TopicPolicy",
3
+ "Properties" :
4
+ {
5
+ "PolicyDocument" : JSON,
6
+ "Topics" : [ List of SNS topic ARNs, ... ]
7
+ }
8
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "Type": "AWS::SQS::Queue",
3
+ "Properties": {
4
+ "DelaySeconds": Integer,
5
+ "MaximumMessageSize": Integer,
6
+ "MessageRetentionPeriod": Integer,
7
+ "QueueName": String,
8
+ "ReceiveMessageWaitTimeSeconds": Integer,
9
+ "RedrivePolicy": RedrivePolicy,
10
+ "VisibilityTimeout": Integer
11
+ }
12
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type" : "AWS::SQS::QueuePolicy",
3
+ "Properties" : {
4
+ "PolicyDocument" : JSON,
5
+ "Queues" : [ String, ... ]
6
+ }
7
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "Type" : "AWS::SSM::Document",
3
+ "Properties" : {
4
+ "Content" : JSON object
5
+ }
6
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type" : "AWS::WAF::ByteMatchSet",
3
+ "Properties" : {
4
+ "ByteMatchTuples" : [ Byte match tuple, ... ],
5
+ "Name" : String
6
+ }
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type" : "AWS::WAF::IPSet",
3
+ "Properties" : {
4
+ "IPSetDescriptors" : [ IPSet descriptor, ... ],
5
+ "Name" : String
6
+ }
7
+ }
data/specs/WAF-Rule.cf ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "Type" : "AWS::WAF::Rule",
3
+ "Properties" : {
4
+ "MetricName" : String,
5
+ "Name" : String,
6
+ "Predicates" : [ Predicate, ... ]
7
+ }
8
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type" : "AWS::WAF::SizeConstraintSet",
3
+ "Properties" : {
4
+ "Name" : String,
5
+ "SizeConstraints" : [ SizeConstraint, ... ]
6
+ }
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type" : "AWS::WAF::SqlInjectionMatchSet",
3
+ "Properties" : {
4
+ "Name" : String,
5
+ "SqlInjectionMatchTuples" : [ SqlInjectionMatchTuple, ... ]
6
+ }
7
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "Type" : "AWS::WAF::WebACL",
3
+ "Properties" : {
4
+ "DefaultAction" : Action,
5
+ "MetricName" : String,
6
+ "Name" : String,
7
+ "Rules" : [ Rule, ... ]
8
+ }
9
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type" : "AWS::WAF::XssMatchSet",
3
+ "Properties" : {
4
+ "Name" : String,
5
+ "XssMatchTuples" : [ XssMatchTuple, ... ]
6
+ }
7
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "Type" : "AWS::WorkSpaces::Workspace",
3
+ "Properties" : {
4
+ "BundleId" : String,
5
+ "DirectoryId" : String,
6
+ "UserName" : String,
7
+ "RootVolumeEncryptionEnabled" : Boolean,
8
+ "UserVolumeEncryptionEnabled" : Boolean,
9
+ "VolumeEncryptionKey" : String
10
+ }
11
+ }