sparkle_formation 3.0.4 → 3.0.6

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: 5d4dd10e3c4157ec1c461dcbd63ab595ee0b939d
4
- data.tar.gz: 4968514c36ae6a230b406fdadbf43196d991c8b9
3
+ metadata.gz: c208713600c2e3752fac5186c34ceac179d49945
4
+ data.tar.gz: 6efa2b513ddcf06cf45ff34a7d1be7b040a7ae98
5
5
  SHA512:
6
- metadata.gz: 4c80d65c292f19f5cf4cf8c003fe799544e6c2cd51209d2f2f7bda1e45408f087ecb936b47dc26b64cfe9cdbadd61a95fc4557641d15d84c39c5c162f4b99f14
7
- data.tar.gz: 8743188a274a414b1426afb53a381772a82a7083e872de990147f2e20aa802e4ec2ffdd0a625a6516696900c21f663c7c6b91ab826b7c38e2e25e4db6d799323
6
+ metadata.gz: e532f430c28776f23b00dc059a087f2e0ee149a88d44c25bae1863e623c61409c5bd8ba246f62e4d2e4462cc20698921f95cf855dff776f953fe1640f42b9daf
7
+ data.tar.gz: 26a00bd06a16fe6c883b475f2bbd01dda14f5f2409bf4bd548c7f1570c769ef746374cb8063fb663c973e40802198446852b02f82aa4b7e7a5cb9ad6a4f5faca
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # v3.0.6
2
+ * Update builtin provider resource lists
3
+
1
4
  # v3.0.4
2
5
  * Extend allowed attributes for generation parameters (#173)
3
6
 
@@ -174,6 +174,55 @@
174
174
  },
175
175
  "path": "aws-resource-logs-destination.html"
176
176
  },
177
+ "AWS::GameLift::Alias": {
178
+ "properties": [
179
+ "Description",
180
+ "Name",
181
+ "RoutingStrategy"
182
+ ],
183
+ "full_properties": {
184
+ "Description": {
185
+ "description": "Information that helps you identify the purpose of this alias.",
186
+ "required": false,
187
+ "type": "String",
188
+ "update_causes": "none"
189
+ },
190
+ "Name": {
191
+ "description": "An identifier to associate with this alias. Alias names don't need to be unique.",
192
+ "required": true,
193
+ "type": "String",
194
+ "update_causes": "none"
195
+ },
196
+ "RoutingStrategy": {
197
+ "description": "A routing configuration that specifies where traffic is directed for this alias, such as to a fleet or to a message.",
198
+ "required": true,
199
+ "type": "Unknown",
200
+ "update_causes": "none"
201
+ }
202
+ },
203
+ "path": "aws-resource-gamelift-alias.html"
204
+ },
205
+ "AWS::WAF::SizeConstraintSet": {
206
+ "properties": [
207
+ "Name",
208
+ "SizeConstraints"
209
+ ],
210
+ "full_properties": {
211
+ "Name": {
212
+ "description": "A friendly name or description for the SizeConstraintSet.",
213
+ "required": true,
214
+ "type": "String",
215
+ "update_causes": "replacement"
216
+ },
217
+ "SizeConstraints": {
218
+ "description": "The size constraint and the part of the web request to check.",
219
+ "required": true,
220
+ "type": "Array",
221
+ "update_causes": "none"
222
+ }
223
+ },
224
+ "path": "aws-resource-waf-sizeconstraintset.html"
225
+ },
177
226
  "AWS::EC2::DHCPOptions": {
178
227
  "properties": [
179
228
  "DomainName",
@@ -223,6 +272,62 @@
223
272
  },
224
273
  "path": "aws-resource-ec2-dhcp-options.html"
225
274
  },
275
+ "AWS::Events::Rule": {
276
+ "properties": [
277
+ "Description",
278
+ "EventPattern",
279
+ "Name",
280
+ "RoleArn",
281
+ "ScheduleExpression",
282
+ "State",
283
+ "Targets"
284
+ ],
285
+ "full_properties": {
286
+ "Description": {
287
+ "description": "A description of the rule's purpose.",
288
+ "required": false,
289
+ "type": "String",
290
+ "update_causes": "none"
291
+ },
292
+ "EventPattern": {
293
+ "description": "Describes which events CloudWatch Events routes to the specified target. These routed events are matched events. For more information, see Events and Event Patterns in the Amazon CloudWatch Developer Guide.",
294
+ "required": false,
295
+ "type": "Unknown",
296
+ "update_causes": "none"
297
+ },
298
+ "Name": {
299
+ "description": "A name for the rule. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the rule name. For more information, see Name Type.",
300
+ "required": false,
301
+ "type": "Unknown",
302
+ "update_causes": "replacement"
303
+ },
304
+ "RoleArn": {
305
+ "description": "The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants CloudWatch Events permission to make calls to target services, such as AWS Lambda (Lambda) or Amazon Kinesis streams.",
306
+ "required": false,
307
+ "type": "String",
308
+ "update_causes": "none"
309
+ },
310
+ "ScheduleExpression": {
311
+ "description": "The schedule or rate (frequency) that determines when CloudWatch Events runs the rule. For more information, see Schedule Expression Syntax for Rules in the Amazon CloudWatch Developer Guide.",
312
+ "required": false,
313
+ "type": "Unknown",
314
+ "update_causes": "none"
315
+ },
316
+ "State": {
317
+ "description": "Indicates whether the rule is enabled. For valid values, see the State parameter for the PutRule action in the Amazon CloudWatch Events API Reference.",
318
+ "required": false,
319
+ "type": "String",
320
+ "update_causes": "none"
321
+ },
322
+ "Targets": {
323
+ "description": "The resources, such as Lambda functions or Amazon Kinesis streams, that CloudWatch Events routes events to and invokes when the rule is triggered.",
324
+ "required": false,
325
+ "type": "Array",
326
+ "update_causes": "none"
327
+ }
328
+ },
329
+ "path": "aws-resource-events-rule.html"
330
+ },
226
331
  "AWS::Lambda::EventSourceMapping": {
227
332
  "properties": [
228
333
  "BatchSize",
@@ -381,7 +486,7 @@
381
486
  },
382
487
  "DomainName": {
383
488
  "description": "A name for the Amazon ES domain. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the domain name. For more information, see Name Type.",
384
- "required": true,
489
+ "required": false,
385
490
  "type": "Unknown",
386
491
  "update_causes": "replacement"
387
492
  },
@@ -447,6 +552,41 @@
447
552
  },
448
553
  "path": "aws-properties-elasticache-security-group.html"
449
554
  },
555
+ "AWS::ApiGateway::Deployment": {
556
+ "properties": [
557
+ "Description",
558
+ "RestApiId",
559
+ "StageDescription",
560
+ "StageName"
561
+ ],
562
+ "full_properties": {
563
+ "Description": {
564
+ "description": "A description of the purpose of the API Gateway deployment.",
565
+ "required": false,
566
+ "type": "String",
567
+ "update_causes": "none"
568
+ },
569
+ "RestApiId": {
570
+ "description": "The ID of the RestApi resource to deploy.",
571
+ "required": true,
572
+ "type": "String",
573
+ "update_causes": "replacement"
574
+ },
575
+ "StageDescription": {
576
+ "description": "Configures the stage that API Gateway creates with this deployment.",
577
+ "required": false,
578
+ "type": "Unknown",
579
+ "update_causes": "none"
580
+ },
581
+ "StageName": {
582
+ "description": "A name for the stage that API Gateway creates with this deployment.",
583
+ "required": true,
584
+ "type": "String",
585
+ "update_causes": "none"
586
+ }
587
+ },
588
+ "path": "aws-resource-apigateway-deployment.html"
589
+ },
450
590
  "AWS::CloudFormation::Authentication": {
451
591
  "properties": [
452
592
  "accessKeyId",
@@ -851,7 +991,8 @@
851
991
  },
852
992
  "AWS::Kinesis::Stream": {
853
993
  "properties": [
854
- "ShardCount"
994
+ "ShardCount",
995
+ "Tags"
855
996
  ],
856
997
  "full_properties": {
857
998
  "ShardCount": {
@@ -859,6 +1000,12 @@
859
1000
  "required": true,
860
1001
  "type": "Number",
861
1002
  "update_causes": "replacement"
1003
+ },
1004
+ "Tags": {
1005
+ "description": "An arbitrary set of tags (key–value pairs) to associate with the Amazon Kinesis stream.",
1006
+ "required": false,
1007
+ "type": "Unknown",
1008
+ "update_causes": "none"
862
1009
  }
863
1010
  },
864
1011
  "path": "aws-resource-kinesis-stream.html"
@@ -933,7 +1080,7 @@
933
1080
  "description": "The instance operating system. For more information, see CreateInstance in the AWS OpsWorks API Reference.",
934
1081
  "required": false,
935
1082
  "type": "String",
936
- "update_causes": "interrupt"
1083
+ "update_causes": "replacement"
937
1084
  },
938
1085
  "RootDeviceType": {
939
1086
  "description": "The root device type of the instance.",
@@ -968,6 +1115,20 @@
968
1115
  },
969
1116
  "path": "aws-resource-opsworks-instance.html"
970
1117
  },
1118
+ "AWS::ApiGateway::Account": {
1119
+ "properties": [
1120
+ "CloudWatchRoleArn"
1121
+ ],
1122
+ "full_properties": {
1123
+ "CloudWatchRoleArn": {
1124
+ "description": "The Amazon Resource Name (ARN) of an IAM role that has write access to CloudWatch Logs in your account.",
1125
+ "required": false,
1126
+ "type": "String",
1127
+ "update_causes": "none"
1128
+ }
1129
+ },
1130
+ "path": "aws-resource-apigateway-account.html"
1131
+ },
971
1132
  "AWS::WAF::Rule": {
972
1133
  "properties": [
973
1134
  "MetricName",
@@ -976,7 +1137,7 @@
976
1137
  ],
977
1138
  "full_properties": {
978
1139
  "MetricName": {
979
- "description": "A friendly name or description for the metrics of this rule.",
1140
+ "description": "A friendly name or description for the metrics of the rule.",
980
1141
  "required": true,
981
1142
  "type": "String",
982
1143
  "update_causes": "replacement"
@@ -988,7 +1149,7 @@
988
1149
  "update_causes": "replacement"
989
1150
  },
990
1151
  "Predicates": {
991
- "description": "The ByteMatchSet, IPSet, or SqlInjectionMatchSet objects to include in a rule. If you add more than one predicate to a rule, a request must match all conditions for it to be allowed or blocked.",
1152
+ "description": "The ByteMatchSet, IPSet, SizeConstraintSet, SqlInjectionMatchSet, or XssMatchSet objects to include in a rule. If you add more than one predicate to a rule, a request must match all conditions in order to be allowed or blocked.",
992
1153
  "required": false,
993
1154
  "type": "Array",
994
1155
  "update_causes": "none"
@@ -996,6 +1157,41 @@
996
1157
  },
997
1158
  "path": "aws-resource-waf-rule.html"
998
1159
  },
1160
+ "AWS::ApiGateway::BasePathMapping": {
1161
+ "properties": [
1162
+ "BasePath",
1163
+ "DomainName",
1164
+ "RestApiId",
1165
+ "Stage"
1166
+ ],
1167
+ "full_properties": {
1168
+ "BasePath": {
1169
+ "description": "The base path name that callers of the API must provide in the URL after the domain name.",
1170
+ "required": false,
1171
+ "type": "String",
1172
+ "update_causes": "none"
1173
+ },
1174
+ "DomainName": {
1175
+ "description": "The name of a DomainName resource.",
1176
+ "required": true,
1177
+ "type": "String",
1178
+ "update_causes": "none"
1179
+ },
1180
+ "RestApiId": {
1181
+ "description": "The name of the API.",
1182
+ "required": true,
1183
+ "type": "String",
1184
+ "update_causes": "none"
1185
+ },
1186
+ "Stage": {
1187
+ "description": "The name of the API's stage.",
1188
+ "required": false,
1189
+ "type": "String",
1190
+ "update_causes": "none"
1191
+ }
1192
+ },
1193
+ "path": "aws-resource-apigateway-basepathmapping.html"
1194
+ },
999
1195
  "AWS::RDS::DBCluster": {
1000
1196
  "properties": [
1001
1197
  "AvailabilityZones",
@@ -1239,7 +1435,7 @@
1239
1435
  "update_causes": "replacement"
1240
1436
  },
1241
1437
  "Tags": {
1242
- "description": "An arbitrary set of tags (key–value pairs) for this VPC.",
1438
+ "description": "An arbitrary set of tags (key–value pairs) for this VPC. To name a VPC resource, specify a value for the Name key.",
1243
1439
  "required": false,
1244
1440
  "type": "Unknown",
1245
1441
  "update_causes": "none"
@@ -1256,7 +1452,7 @@
1256
1452
  "description": "A name for the application. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the application name. For more information, see Name Type.",
1257
1453
  "required": false,
1258
1454
  "type": "Unknown",
1259
- "update_causes": "replacement"
1455
+ "update_causes": "unavailable"
1260
1456
  }
1261
1457
  },
1262
1458
  "path": "aws-resource-codedeploy-application.html"
@@ -1517,11 +1713,13 @@
1517
1713
  "properties": [
1518
1714
  "Code",
1519
1715
  "Description",
1716
+ "FunctionName",
1520
1717
  "Handler",
1521
1718
  "MemorySize",
1522
1719
  "Role",
1523
1720
  "Runtime",
1524
- "Timeout"
1721
+ "Timeout",
1722
+ "VpcConfig"
1525
1723
  ],
1526
1724
  "full_properties": {
1527
1725
  "Code": {
@@ -1536,6 +1734,12 @@
1536
1734
  "type": "String",
1537
1735
  "update_causes": "none"
1538
1736
  },
1737
+ "FunctionName": {
1738
+ "description": "A name for the function. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the function's name. For more information, see Name Type.",
1739
+ "required": false,
1740
+ "type": "Unknown",
1741
+ "update_causes": "replacement"
1742
+ },
1539
1743
  "Handler": {
1540
1744
  "description": "The name of the function (within your source code) that Lambda calls to start running your code. For more information, see the Handler property in the AWS Lambda Developer Guide.",
1541
1745
  "required": true,
@@ -1565,6 +1769,12 @@
1565
1769
  "required": false,
1566
1770
  "type": "Number",
1567
1771
  "update_causes": "none"
1772
+ },
1773
+ "VpcConfig": {
1774
+ "description": "If the Lambda function requires access to resources in a VPC, specify a VPC configuration that Lambda uses to set up an elastic network interface (ENI). The ENI enables your function to connect to other resources in your VPC, but it doesn't provide public Internet access. If your function requires Internet access (for example, to access AWS services that don't have VPC endpoints), configure a Network Address Translation (NAT) instance inside your VPC or use an Amazon Virtual Private Cloud (Amazon VPC) NAT gateway. For more information, see NAT Gateways in the Amazon VPC User Guide.",
1775
+ "required": false,
1776
+ "type": "Unknown",
1777
+ "update_causes": "none"
1568
1778
  }
1569
1779
  },
1570
1780
  "path": "aws-resource-lambda-function.html"
@@ -2074,13 +2284,13 @@
2074
2284
  "description": "A friendly description of the RDS parameter group. For example, \"My Parameter Group\".",
2075
2285
  "required": true,
2076
2286
  "type": "String",
2077
- "update_causes": "none"
2287
+ "update_causes": "unavailable"
2078
2288
  },
2079
2289
  "Family": {
2080
2290
  "description": "The database family of this RDS parameter group. For example, \"MySQL5.1\".",
2081
2291
  "required": true,
2082
2292
  "type": "String",
2083
- "update_causes": "none"
2293
+ "update_causes": "unavailable"
2084
2294
  },
2085
2295
  "Parameters": {
2086
2296
  "description": "The parameters to set for this RDS parameter group.",
@@ -2100,6 +2310,20 @@
2100
2310
  },
2101
2311
  "path": "aws-properties-rds-dbparametergroup.html"
2102
2312
  },
2313
+ "AWS::ApiGateway::ClientCertificate": {
2314
+ "properties": [
2315
+ "Description"
2316
+ ],
2317
+ "full_properties": {
2318
+ "Description": {
2319
+ "description": "A description of the client certificate.",
2320
+ "required": false,
2321
+ "type": "String",
2322
+ "update_causes": "none"
2323
+ }
2324
+ },
2325
+ "path": "aws-resource-apigateway-clientcertificate.html"
2326
+ },
2103
2327
  "AWS::Logs::LogGroup": {
2104
2328
  "properties": [
2105
2329
  "RetentionInDays"
@@ -2187,6 +2411,7 @@
2187
2411
  "AWS::Route53::RecordSet": {
2188
2412
  "properties": [
2189
2413
  "AliasTarget",
2414
+ "Comment",
2190
2415
  "Failover",
2191
2416
  "GeoLocation",
2192
2417
  "HealthCheckId",
@@ -2207,6 +2432,12 @@
2207
2432
  "type": "Unknown",
2208
2433
  "update_causes": "none"
2209
2434
  },
2435
+ "Comment": {
2436
+ "description": "Any comments that you want to include about the hosted zone.",
2437
+ "required": false,
2438
+ "type": "String",
2439
+ "update_causes": "none"
2440
+ },
2210
2441
  "Failover": {
2211
2442
  "description": "Designates the record set as a PRIMARY or SECONDARY failover record set. When you have more than one resource performing the same function, you can configure Amazon Route 53 to check the health of your resources and use only health resources to respond to DNS queries. You cannot create nonfailover resource record sets that have the same Name and Type property values as failover resource record sets. For more information, see the Failover element in the Amazon Route 53 API Reference.",
2212
2443
  "required": false,
@@ -2750,6 +2981,90 @@
2750
2981
  },
2751
2982
  "path": "aws-resource-opsworks-elbattachment.html"
2752
2983
  },
2984
+ "AWS::GameLift::Fleet": {
2985
+ "properties": [
2986
+ "BuildId",
2987
+ "Description",
2988
+ "DesiredEC2Instances",
2989
+ "EC2InboundPermissions",
2990
+ "EC2InstanceType",
2991
+ "LogPaths",
2992
+ "MaxSize",
2993
+ "MinSize",
2994
+ "Name",
2995
+ "ServerLaunchParameters",
2996
+ "ServerLaunchPath"
2997
+ ],
2998
+ "full_properties": {
2999
+ "BuildId": {
3000
+ "description": "The unique identifier for the build that you want to use with this fleet.",
3001
+ "required": true,
3002
+ "type": "String",
3003
+ "update_causes": "replacement"
3004
+ },
3005
+ "Description": {
3006
+ "description": "Information that helps you identify the purpose of this fleet.",
3007
+ "required": false,
3008
+ "type": "String",
3009
+ "update_causes": "none"
3010
+ },
3011
+ "DesiredEC2Instances": {
3012
+ "description": "The number of EC2 instances that you want in this fleet.",
3013
+ "required": true,
3014
+ "type": "Number",
3015
+ "update_causes": "none"
3016
+ },
3017
+ "EC2InboundPermissions": {
3018
+ "description": "The incoming traffic, expressed as IP ranges and port numbers, that is permitted to access the game server. If you don't specify values, no traffic is permitted to your game servers.",
3019
+ "required": false,
3020
+ "type": "Array",
3021
+ "update_causes": "none"
3022
+ },
3023
+ "EC2InstanceType": {
3024
+ "description": "The type of EC2 instances that the fleet uses. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleet's hosts. For more information about the instance types that are supported by GameLift, see the EC2InstanceType parameter in the Amazon GameLift API Reference.",
3025
+ "required": true,
3026
+ "type": "Unknown",
3027
+ "update_causes": "replacement"
3028
+ },
3029
+ "LogPaths": {
3030
+ "description": "The path to game-session log files that are generated by your game server, with the slashes (\\) escaped. After a game session has been terminated, GameLift captures and stores the logs in an S3 bucket.",
3031
+ "required": false,
3032
+ "type": "Array",
3033
+ "update_causes": "replacement"
3034
+ },
3035
+ "MaxSize": {
3036
+ "description": "The maximum number of EC2 instances that you want to allow in this fleet. By default, AWS CloudFormation, sets this property to 1.",
3037
+ "required": false,
3038
+ "type": "Number",
3039
+ "update_causes": "none"
3040
+ },
3041
+ "MinSize": {
3042
+ "description": "The minimum number of EC2 instances that you want to allow in this fleet. By default, AWS CloudFormation, sets this property to 0.",
3043
+ "required": false,
3044
+ "type": "Number",
3045
+ "update_causes": "none"
3046
+ },
3047
+ "Name": {
3048
+ "description": "An identifier to associate with this fleet. Fleet names don't need to be unique.",
3049
+ "required": true,
3050
+ "type": "String",
3051
+ "update_causes": "none"
3052
+ },
3053
+ "ServerLaunchParameters": {
3054
+ "description": "The parameters that are required to launch your game server. Specify these parameters as a string of command-line parameters, such as +sv_port 33435 +start_lobby.",
3055
+ "required": false,
3056
+ "type": "String",
3057
+ "update_causes": "replacement"
3058
+ },
3059
+ "ServerLaunchPath": {
3060
+ "description": "The location of your game server that GameLift launches. You must escape the slashes (\\) and use the following pattern: C:\\\\game\\\\launchpath. For example, if your game server files are in the MyGame folder, the path should be C:\\\\game\\\\MyGame\\\\server.exe.",
3061
+ "required": true,
3062
+ "type": "String",
3063
+ "update_causes": "replacement"
3064
+ }
3065
+ },
3066
+ "path": "aws-resource-gamelift-fleet.html"
3067
+ },
2753
3068
  "AWS::IAM::Group": {
2754
3069
  "properties": [
2755
3070
  "ManagedPolicyArns",
@@ -2778,41 +3093,132 @@
2778
3093
  },
2779
3094
  "path": "aws-properties-iam-group.html"
2780
3095
  },
2781
- "AWS::Route53::RecordSetGroup": {
3096
+ "AWS::ApiGateway::Authorizer": {
2782
3097
  "properties": [
2783
- "Comment",
2784
- "HostedZoneId",
2785
- "HostedZoneName",
2786
- "RecordSets"
3098
+ "AuthorizerCredentials",
3099
+ "AuthorizerResultTtlInSeconds",
3100
+ "AuthorizerUri",
3101
+ "IdentitySource",
3102
+ "IdentityValidationExpression",
3103
+ "Name",
3104
+ "RestApiId",
3105
+ "Type"
2787
3106
  ],
2788
3107
  "full_properties": {
2789
- "Comment": {
2790
- "description": "Any comments you want to include about the hosted zone.",
3108
+ "AuthorizerCredentials": {
3109
+ "description": "The credentials required for the authorizer. To specify an AWS Identity and Access Management (IAM) role that API Gateway assumes, specify the role's Amazon Resource Name (ARN). To use resource-based permissions on the AWS Lambda (Lambda) function, specify null.",
2791
3110
  "required": false,
2792
3111
  "type": "String",
2793
3112
  "update_causes": "none"
2794
3113
  },
2795
- "HostedZoneId": {
2796
- "description": "The ID of the hosted zone.",
2797
- "required": false,
2798
- "type": "String",
2799
- "update_causes": "replacement"
2800
- },
2801
- "HostedZoneName": {
2802
- "description": "The name of the domain for the hosted zone where you want to add the record set.",
3114
+ "AuthorizerResultTtlInSeconds": {
3115
+ "description": "The time-to-live (TTL) period, in seconds, that specifies how long API Gateway caches authorizer results. If you specify a value greater than 0, API Gateway caches the authorizer responses. By default, API Gateway sets this property to 300. The maximum value is 3600, or 1 hour.",
2803
3116
  "required": false,
2804
- "type": "String",
2805
- "update_causes": "replacement"
3117
+ "type": "Number",
3118
+ "update_causes": "none"
2806
3119
  },
2807
- "RecordSets": {
2808
- "description": "List of resource record sets to add.",
3120
+ "AuthorizerUri": {
3121
+ "description": "The authorizer's Uniform Resource Identifier (URI). If you specify TOKEN for the authorizer's Type property, specify a Lambda function URI, which has the form arn:aws:apigateway:region:lambda:path/path. The path usually has the form /2015-03-31/functions/LambdaFunctionARN/invocations.",
2809
3122
  "required": true,
2810
- "type": "Array",
3123
+ "type": "Unknown",
3124
+ "update_causes": "none"
3125
+ },
3126
+ "IdentitySource": {
3127
+ "description": "The source of the identity in an incoming request. If you specify TOKEN for the authorizer's Type property, specify a mapping expression. The custom header mapping expression has the form method.request.header.name, where name is the name of a custom authorization header that clients submit as part of their requests.",
3128
+ "required": true,
3129
+ "type": "Unknown",
3130
+ "update_causes": "none"
3131
+ },
3132
+ "IdentityValidationExpression": {
3133
+ "description": "A validation expression for the incoming identity. If you specify TOKEN for the authorizer's Type property, specify a regular expression. API Gateway uses the expression to attempt to match the incoming client token, and proceeds if the token matches. If the token doesn't match, API Gateway responds with a 401 (unauthorized request) error code.",
3134
+ "required": false,
3135
+ "type": "Unknown",
3136
+ "update_causes": "none"
3137
+ },
3138
+ "Name": {
3139
+ "description": "The name of the authorizer.",
3140
+ "required": true,
3141
+ "type": "String",
3142
+ "update_causes": "none"
3143
+ },
3144
+ "RestApiId": {
3145
+ "description": "The ID of the RestApi resource in which API Gateway creates the authorizer.",
3146
+ "required": false,
3147
+ "type": "String",
3148
+ "update_causes": "replacement"
3149
+ },
3150
+ "Type": {
3151
+ "description": "The type of the authorizer, such as TOKEN.",
3152
+ "required": true,
3153
+ "type": "String",
3154
+ "update_causes": "none"
3155
+ }
3156
+ },
3157
+ "path": "aws-resource-apigateway-authorizer.html"
3158
+ },
3159
+ "AWS::Route53::RecordSetGroup": {
3160
+ "properties": [
3161
+ "Comment",
3162
+ "HostedZoneId",
3163
+ "HostedZoneName",
3164
+ "RecordSets"
3165
+ ],
3166
+ "full_properties": {
3167
+ "Comment": {
3168
+ "description": "Any comments you want to include about the hosted zone.",
3169
+ "required": false,
3170
+ "type": "String",
3171
+ "update_causes": "none"
3172
+ },
3173
+ "HostedZoneId": {
3174
+ "description": "The ID of the hosted zone.",
3175
+ "required": false,
3176
+ "type": "String",
3177
+ "update_causes": "replacement"
3178
+ },
3179
+ "HostedZoneName": {
3180
+ "description": "The name of the domain for the hosted zone where you want to add the record set.",
3181
+ "required": false,
3182
+ "type": "String",
3183
+ "update_causes": "replacement"
3184
+ },
3185
+ "RecordSets": {
3186
+ "description": "List of resource record sets to add.",
3187
+ "required": true,
3188
+ "type": "Array",
2811
3189
  "update_causes": "none"
2812
3190
  }
2813
3191
  },
2814
3192
  "path": "aws-properties-route53-recordsetgroup.html"
2815
3193
  },
3194
+ "AWS::Lambda::Version": {
3195
+ "properties": [
3196
+ "CodeSha256",
3197
+ "Description",
3198
+ "FunctionName"
3199
+ ],
3200
+ "full_properties": {
3201
+ "CodeSha256": {
3202
+ "description": "The SHA-256 hash of the deployment package that you want to publish. This value must match the SHA-256 hash of the $LATEST version of the function. Specify this property to validate that you are publishing the correct package.",
3203
+ "required": false,
3204
+ "type": "String",
3205
+ "update_causes": "unavailable"
3206
+ },
3207
+ "Description": {
3208
+ "description": "A description of the version you are publishing. If you don't specify a value, Lambda copies the description from the $LATEST version of the function.",
3209
+ "required": false,
3210
+ "type": "String",
3211
+ "update_causes": "unavailable"
3212
+ },
3213
+ "FunctionName": {
3214
+ "description": "The Lambda function for which you want to publish a version. You can specify the function's name or its Amazon Resource Name (ARN).",
3215
+ "required": true,
3216
+ "type": "String",
3217
+ "update_causes": "replacement"
3218
+ }
3219
+ },
3220
+ "path": "aws-resource-lambda-version.html"
3221
+ },
2816
3222
  "AWS::AutoScaling::ScalingPolicy": {
2817
3223
  "properties": [
2818
3224
  "AdjustmentType",
@@ -2863,7 +3269,7 @@
2863
3269
  "update_causes": "none"
2864
3270
  },
2865
3271
  "PolicyType": {
2866
- "description": "An Auto Scaling policy type. You can specify SimpleScaling or StepScaling. By default, AWS CloudFormation specifies SimpleScaling. For more information, see Scaling Policy Types in the Auto Scaling Developer Guide.",
3272
+ "description": "An Auto Scaling policy type. You can specify SimpleScaling or StepScaling. By default, AWS CloudFormation specifies SimpleScaling. For more information, see Scaling Policy Types in the Auto Scaling User Guide.",
2867
3273
  "required": false,
2868
3274
  "type": "Unknown",
2869
3275
  "update_causes": "none"
@@ -3440,6 +3846,41 @@
3440
3846
  },
3441
3847
  "path": "aws-resource-as-lifecyclehook.html"
3442
3848
  },
3849
+ "AWS::Lambda::Alias": {
3850
+ "properties": [
3851
+ "Description",
3852
+ "FunctionName",
3853
+ "FunctionVersion",
3854
+ "Name"
3855
+ ],
3856
+ "full_properties": {
3857
+ "Description": {
3858
+ "description": "Information that describes the alias, such as its purpose or the function that it's associated with.",
3859
+ "required": false,
3860
+ "type": "String",
3861
+ "update_causes": "none"
3862
+ },
3863
+ "FunctionName": {
3864
+ "description": "The Lambda function that you want to associate with this alias. You can specify the function's name or its Amazon Resource Name (ARN).",
3865
+ "required": true,
3866
+ "type": "String",
3867
+ "update_causes": "replacement"
3868
+ },
3869
+ "FunctionVersion": {
3870
+ "description": "The version of the Lambda function that you want to associate with this alias.",
3871
+ "required": true,
3872
+ "type": "String",
3873
+ "update_causes": "none"
3874
+ },
3875
+ "Name": {
3876
+ "description": "A name for the alias.",
3877
+ "required": true,
3878
+ "type": "String",
3879
+ "update_causes": "replacement"
3880
+ }
3881
+ },
3882
+ "path": "aws-resource-lambda-alias.html"
3883
+ },
3443
3884
  "AWS::CloudFormation::Stack": {
3444
3885
  "properties": [
3445
3886
  "NotificationARNs",
@@ -3485,6 +3926,7 @@
3485
3926
  "AWS::ECS::Service": {
3486
3927
  "properties": [
3487
3928
  "Cluster",
3929
+ "DeploymentConfiguration",
3488
3930
  "DesiredCount",
3489
3931
  "LoadBalancers",
3490
3932
  "Role",
@@ -3497,6 +3939,12 @@
3497
3939
  "type": "String",
3498
3940
  "update_causes": "replacement"
3499
3941
  },
3942
+ "DeploymentConfiguration": {
3943
+ "description": "Configures how many tasks run during a deployment.",
3944
+ "required": false,
3945
+ "type": "Unknown",
3946
+ "update_causes": "none"
3947
+ },
3500
3948
  "DesiredCount": {
3501
3949
  "description": "The number of simultaneous tasks, which you specify by using the TaskDefinition property, that you want to run on the cluster.",
3502
3950
  "required": true,
@@ -3595,7 +4043,7 @@
3595
4043
  "description": "The service token that was given to the template developer by the service provider to access the service, such as an Amazon SNS topic ARN or Lambda function ARN. The service token must be from the same region in which you are creating the stack.",
3596
4044
  "required": true,
3597
4045
  "type": "String",
3598
- "update_causes": "unknown"
4046
+ "update_causes": "unavailable"
3599
4047
  }
3600
4048
  },
3601
4049
  "path": "aws-resource-cfn-customresource.html"
@@ -3731,10 +4179,12 @@
3731
4179
  },
3732
4180
  "AWS::EC2::Instance": {
3733
4181
  "properties": [
4182
+ "Affinity",
3734
4183
  "AvailabilityZone",
3735
4184
  "BlockDeviceMappings",
3736
4185
  "DisableApiTermination",
3737
4186
  "EbsOptimized",
4187
+ "HostId",
3738
4188
  "IamInstanceProfile",
3739
4189
  "ImageId",
3740
4190
  "InstanceInitiatedShutdownBehavior",
@@ -3758,6 +4208,12 @@
3758
4208
  "AdditionalInfo"
3759
4209
  ],
3760
4210
  "full_properties": {
4211
+ "Affinity": {
4212
+ "description": "Indicates whether Amazon Elastic Compute Cloud (Amazon EC2) always associates the instance with a dedicated host. If you want Amazon EC2 to always restart the instance (if it was stopped) onto the same host on which it was launched, specify host. If you want Amazon EC2 to restart the instance on any available host, but to try to launch the instance onto the last host it ran on (on a best-effort basis), specify default.",
4213
+ "required": false,
4214
+ "type": "String",
4215
+ "update_causes": "none"
4216
+ },
3761
4217
  "AvailabilityZone": {
3762
4218
  "description": "Specifies the name of the Availability Zone in which the instance is located.",
3763
4219
  "required": false,
@@ -3788,8 +4244,14 @@
3788
4244
  "interrupt"
3789
4245
  ]
3790
4246
  },
4247
+ "HostId": {
4248
+ "description": "If you specify host for the Affinity property, the ID of a dedicated host that the instance is associated with. If you don't specify an ID, Amazon EC2 launches the instance onto any available, compatible dedicated host in your account. This type of launch is called an untargeted launch. Note that for untargeted launches, you must have a compatible, dedicated host available to successfully launch instances.",
4249
+ "required": false,
4250
+ "type": "String",
4251
+ "update_causes": "none"
4252
+ },
3791
4253
  "IamInstanceProfile": {
3792
- "description": "The physical ID of an instance profile or a reference to an AWS::IAM::InstanceProfile resource.",
4254
+ "description": "The physical ID (resource name) of an instance profile or a reference to an AWS::IAM::InstanceProfile resource.",
3793
4255
  "required": false,
3794
4256
  "type": "String",
3795
4257
  "update_causes": "replacement"
@@ -3903,10 +4365,13 @@
3903
4365
  "update_causes": "none"
3904
4366
  },
3905
4367
  "Tenancy": {
3906
- "description": "The tenancy of the instance that you want to launch. This value can be either \"default\" or \"dedicated\". An instance that has a tenancy value of \"dedicated\" runs on single-tenant hardware and can be launched only into a VPC. For more information, see Using EC2 Dedicated Instances Within Your VPC in the Amazon VPC User Guide.",
4368
+ "description": "The tenancy of the instance that you want to launch, such as default, dedicated, or host. If you specify a tenancy value of dedicated or host, you must launch the instance in a VPC. For more information, see Dedicated Instances in the Amazon VPC User Guide.",
3907
4369
  "required": false,
3908
4370
  "type": "String",
3909
- "update_causes": "replacement"
4371
+ "update_causes": [
4372
+ "replacement",
4373
+ "none"
4374
+ ]
3910
4375
  },
3911
4376
  "UserData": {
3912
4377
  "description": "Base64-encoded MIME user data that is made available to the instances.",
@@ -3956,6 +4421,34 @@
3956
4421
  },
3957
4422
  "path": "aws-resource-ec2-vpn-gatewayrouteprop.html"
3958
4423
  },
4424
+ "AWS::ApiGateway::Resource": {
4425
+ "properties": [
4426
+ "ParentId",
4427
+ "PathPart",
4428
+ "RestApiId"
4429
+ ],
4430
+ "full_properties": {
4431
+ "ParentId": {
4432
+ "description": "If you want to create a child resource, the ID of the parent resource. For resources without a parent, specify the RestApi root resource ID, such as { \"Fn::GetAtt\": [\"MyRestApi\", \"RootResourceId\"] }.",
4433
+ "required": true,
4434
+ "type": "String",
4435
+ "update_causes": "replacement"
4436
+ },
4437
+ "PathPart": {
4438
+ "description": "A path name for the resource.",
4439
+ "required": true,
4440
+ "type": "String",
4441
+ "update_causes": "replacement"
4442
+ },
4443
+ "RestApiId": {
4444
+ "description": "The ID of the RestApi resource in which you want to create this resource.",
4445
+ "required": true,
4446
+ "type": "String",
4447
+ "update_causes": "replacement"
4448
+ }
4449
+ },
4450
+ "path": "aws-resource-apigateway-resource.html"
4451
+ },
3959
4452
  "AWS::Config::ConfigurationRecorder": {
3960
4453
  "properties": [
3961
4454
  "Name",
@@ -3988,6 +4481,7 @@
3988
4481
  "properties": [
3989
4482
  "BidPrice",
3990
4483
  "Configurations",
4484
+ "EbsConfiguration",
3991
4485
  "InstanceCount",
3992
4486
  "InstanceRole",
3993
4487
  "InstanceType",
@@ -4008,6 +4502,12 @@
4008
4502
  "type": "Array",
4009
4503
  "update_causes": "replacement"
4010
4504
  },
4505
+ "EbsConfiguration": {
4506
+ "description": "Configures Amazon Elastic Block Store (Amazon EBS) storage volumes to attach to your instances.",
4507
+ "required": false,
4508
+ "type": "Unknown",
4509
+ "update_causes": "replacement"
4510
+ },
4011
4511
  "InstanceCount": {
4012
4512
  "description": "The number of instances to launch in the instance group.",
4013
4513
  "required": true,
@@ -4114,7 +4614,7 @@
4114
4614
  "update_causes": "unavailable"
4115
4615
  },
4116
4616
  "Iops": {
4117
- "description": "The number of I/O operations per second (IOPS) that the volume supports. This can be any integer value from 1–4000.",
4617
+ "description": "The number of I/O operations per second (IOPS) that the volume supports. For more information about the valid sizes for each volume type, see the Iops parameter for the CreateVolume action in the Amazon EC2 API Reference.",
4118
4618
  "required": false,
4119
4619
  "type": "Unknown",
4120
4620
  "update_causes": "unavailable"
@@ -4126,7 +4626,7 @@
4126
4626
  "update_causes": "unavailable"
4127
4627
  },
4128
4628
  "Size": {
4129
- "description": "The size of the volume, in gibibytes (GiBs). For more information about the valid sizes for each volume type, see the CreateVolume Size parameter in the Amazon EC2 API Reference.",
4629
+ "description": "The size of the volume, in gibibytes (GiBs). For more information about the valid sizes for each volume type, see the Size parameter for the CreateVolume action in the Amazon EC2 API Reference.",
4130
4630
  "required": false,
4131
4631
  "type": "String",
4132
4632
  "update_causes": "unavailable"
@@ -4141,12 +4641,12 @@
4141
4641
  "description": "An arbitrary set of tags (key–value pairs) for this volume.",
4142
4642
  "required": false,
4143
4643
  "type": "Unknown",
4144
- "update_causes": "unavailable"
4644
+ "update_causes": "none"
4145
4645
  },
4146
4646
  "VolumeType": {
4147
- "description": "The volume type. You can specify standard, io1, or gp2. If you set the type to io1, you must also set the Iops property. For more information about these values and the default value, see CreateVolume in the Amazon EC2 API Reference.",
4647
+ "description": "The volume type. You can specify standard, io1, or gp2. If you set the type to io1, you must also set the Iops property. For more information about these values and the default value, see the VolumeType parameter for the CreateVolume action in the Amazon EC2 API Reference.",
4148
4648
  "required": false,
4149
- "type": "String",
4649
+ "type": "Unknown",
4150
4650
  "update_causes": "unavailable"
4151
4651
  }
4152
4652
  },
@@ -4369,6 +4869,34 @@
4369
4869
  },
4370
4870
  "path": "aws-resource-config-configrule.html"
4371
4871
  },
4872
+ "AWS::EC2::Host": {
4873
+ "properties": [
4874
+ "AutoPlacement",
4875
+ "AvailabilityZone",
4876
+ "InstanceType"
4877
+ ],
4878
+ "full_properties": {
4879
+ "AutoPlacement": {
4880
+ "description": "Indicates if the host accepts EC2 instances with only matching configurations or if instances must also specify the host ID. Instances that don't specify a host ID can't launch onto a host with AutoPlacement set to off. By default, AWS CloudFormation sets this property to on. For more information, see Understanding Instance Placement and Host Affinity in the Amazon EC2 User Guide for Linux Instances.",
4881
+ "required": false,
4882
+ "type": "String",
4883
+ "update_causes": "none"
4884
+ },
4885
+ "AvailabilityZone": {
4886
+ "description": "The Availability Zone (AZ) in which to launch the dedicated host.",
4887
+ "required": true,
4888
+ "type": "String",
4889
+ "update_causes": "replacement"
4890
+ },
4891
+ "InstanceType": {
4892
+ "description": "The instance type that the dedicated host accepts. Only instances of this type can be launched onto the host. For more information, see Supported Instance Types in the Amazon EC2 User Guide for Linux Instances.",
4893
+ "required": true,
4894
+ "type": "Unknown",
4895
+ "update_causes": "replacement"
4896
+ }
4897
+ },
4898
+ "path": "aws-resource-ec2-host.html"
4899
+ },
4372
4900
  "AWS::EC2::VolumeAttachment": {
4373
4901
  "properties": [
4374
4902
  "Device",
@@ -4473,8 +5001,8 @@
4473
5001
  "GlobalSecondaryIndexes",
4474
5002
  "KeySchema",
4475
5003
  "LocalSecondaryIndexes",
4476
- "StreamSpecification",
4477
5004
  "ProvisionedThroughput",
5005
+ "StreamSpecification",
4478
5006
  "TableName"
4479
5007
  ],
4480
5008
  "full_properties": {
@@ -4489,7 +5017,7 @@
4489
5017
  "required": false,
4490
5018
  "type": "Array",
4491
5019
  "update_causes": [
4492
- "replacement",
5020
+ "unavailable",
4493
5021
  "none",
4494
5022
  "interrupt"
4495
5023
  ]
@@ -4506,18 +5034,18 @@
4506
5034
  "type": "Array",
4507
5035
  "update_causes": "replacement"
4508
5036
  },
4509
- "StreamSpecification": {
4510
- "description": "The settings for the DynamoDB table stream, which capture changes to items stored in the table.",
4511
- "required": false,
4512
- "type": "Unknown",
4513
- "update_causes": "none"
4514
- },
4515
5037
  "ProvisionedThroughput": {
4516
5038
  "description": "Throughput for the specified table, consisting of values for ReadCapacityUnits and WriteCapacityUnits. For more information about the contents of a provisioned throughput structure, see DynamoDB Provisioned Throughput.",
4517
5039
  "required": true,
4518
5040
  "type": "Unknown",
4519
5041
  "update_causes": "none"
4520
5042
  },
5043
+ "StreamSpecification": {
5044
+ "description": "The settings for the DynamoDB table stream, which capture changes to items stored in the table.",
5045
+ "required": false,
5046
+ "type": "Unknown",
5047
+ "update_causes": "none"
5048
+ },
4521
5049
  "TableName": {
4522
5050
  "description": "A name for the table. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the table name. For more information, see Name Type.",
4523
5051
  "required": false,
@@ -4618,6 +5146,111 @@
4618
5146
  },
4619
5147
  "path": "aws-resource-ec2-subnet.html"
4620
5148
  },
5149
+ "AWS::ApiGateway::ApiKey": {
5150
+ "properties": [
5151
+ "Description",
5152
+ "Enabled",
5153
+ "Name",
5154
+ "StageKeys"
5155
+ ],
5156
+ "full_properties": {
5157
+ "Description": {
5158
+ "description": "A description of the purpose of the API key.",
5159
+ "required": false,
5160
+ "type": "String",
5161
+ "update_causes": "none"
5162
+ },
5163
+ "Enabled": {
5164
+ "description": "Indicates whether the API key can be used by clients.",
5165
+ "required": false,
5166
+ "type": "Boolean",
5167
+ "update_causes": "none"
5168
+ },
5169
+ "Name": {
5170
+ "description": "A name for the API key. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the API key name. For more information, see Name Type.",
5171
+ "required": false,
5172
+ "type": "Unknown",
5173
+ "update_causes": "replacement"
5174
+ },
5175
+ "StageKeys": {
5176
+ "description": "A list of stages to associated with this API key.",
5177
+ "required": false,
5178
+ "type": "Array",
5179
+ "update_causes": "none"
5180
+ }
5181
+ },
5182
+ "path": "aws-resource-apigateway-apikey.html"
5183
+ },
5184
+ "AWS::ApiGateway::Stage": {
5185
+ "properties": [
5186
+ "CacheClusterEnabled",
5187
+ "CacheClusterSize",
5188
+ "ClientCertificateId",
5189
+ "DeploymentId",
5190
+ "Description",
5191
+ "MethodSettings",
5192
+ "RestApiId",
5193
+ "StageName",
5194
+ "Variables"
5195
+ ],
5196
+ "full_properties": {
5197
+ "CacheClusterEnabled": {
5198
+ "description": "Indicates whether cache clustering is enabled for the stage.",
5199
+ "required": false,
5200
+ "type": "Boolean",
5201
+ "update_causes": "none"
5202
+ },
5203
+ "CacheClusterSize": {
5204
+ "description": "The stage's cache cluster size.",
5205
+ "required": false,
5206
+ "type": "String",
5207
+ "update_causes": "none"
5208
+ },
5209
+ "ClientCertificateId": {
5210
+ "description": "The identifier of the client certificate that API Gateway uses to call your integration endpoints in the stage.",
5211
+ "required": false,
5212
+ "type": "String",
5213
+ "update_causes": "none"
5214
+ },
5215
+ "DeploymentId": {
5216
+ "description": "The ID of the deployment that the stage points to.",
5217
+ "required": true,
5218
+ "type": "String",
5219
+ "update_causes": "none"
5220
+ },
5221
+ "Description": {
5222
+ "description": "A description of the stage's purpose.",
5223
+ "required": false,
5224
+ "type": "String",
5225
+ "update_causes": "none"
5226
+ },
5227
+ "MethodSettings": {
5228
+ "description": "Settings for all methods in the stage.",
5229
+ "required": false,
5230
+ "type": "Unknown",
5231
+ "update_causes": "none"
5232
+ },
5233
+ "RestApiId": {
5234
+ "description": "The ID of the RestApi resource that you're deploying with this stage.",
5235
+ "required": true,
5236
+ "type": "String",
5237
+ "update_causes": "replacement"
5238
+ },
5239
+ "StageName": {
5240
+ "description": "The name of the stage, which API Gateway uses as the first path segment in the invoke Uniform Resource Identifier (URI).",
5241
+ "required": true,
5242
+ "type": "String",
5243
+ "update_causes": "replacement"
5244
+ },
5245
+ "Variables": {
5246
+ "description": "A map (string to string map) that defines the stage variables, where the variable name is the key and the variable value is the value. Variable names are limited to alphanumeric characters. Values must match the following regular expression: [A-Za-z0-9-._~:/?#&=,]+.",
5247
+ "required": false,
5248
+ "type": "Unknown",
5249
+ "update_causes": "none"
5250
+ }
5251
+ },
5252
+ "path": "aws-resource-apigateway-stage.html"
5253
+ },
4621
5254
  "AWS::ElasticBeanstalk::ConfigurationTemplate": {
4622
5255
  "properties": [
4623
5256
 
@@ -4897,6 +5530,34 @@
4897
5530
  },
4898
5531
  "path": "aws-resource-waf-sqlinjectionmatchset.html"
4899
5532
  },
5533
+ "AWS::GameLift::Build": {
5534
+ "properties": [
5535
+ "Name",
5536
+ "StorageLocation",
5537
+ "Version"
5538
+ ],
5539
+ "full_properties": {
5540
+ "Name": {
5541
+ "description": "An identifier to associate with this build. Build names don't need to be unique.",
5542
+ "required": false,
5543
+ "type": "String",
5544
+ "update_causes": "none"
5545
+ },
5546
+ "StorageLocation": {
5547
+ "description": "The Amazon Simple Storage Service (Amazon S3) location where your build package files are located.",
5548
+ "required": false,
5549
+ "type": "Unknown",
5550
+ "update_causes": "replacement"
5551
+ },
5552
+ "Version": {
5553
+ "description": "A version to associate with this build. Version is useful if you want to track updates to your build package files. Versions don't need to be unique.",
5554
+ "required": false,
5555
+ "type": "String",
5556
+ "update_causes": "none"
5557
+ }
5558
+ },
5559
+ "path": "aws-resource-gamelift-build.html"
5560
+ },
4900
5561
  "AWS::EC2::SecurityGroup": {
4901
5562
  "properties": [
4902
5563
  "GroupDescription",
@@ -4939,6 +5600,27 @@
4939
5600
  },
4940
5601
  "path": "aws-properties-ec2-security-group.html"
4941
5602
  },
5603
+ "AWS::ApiGateway::RestApi": {
5604
+ "properties": [
5605
+ "Body",
5606
+ "BodyS3Location"
5607
+ ],
5608
+ "full_properties": {
5609
+ "Body": {
5610
+ "description": "A Swagger specification that defines a set of RESTful APIs in JSON or YAML format.",
5611
+ "required": false,
5612
+ "type": "String",
5613
+ "update_causes": "none"
5614
+ },
5615
+ "BodyS3Location": {
5616
+ "description": "The Amazon Simple Storage Service (Amazon S3) location that points to a Swagger file, which defines a set of RESTful APIs in JSON or YAML format.",
5617
+ "required": false,
5618
+ "type": "Unknown",
5619
+ "update_causes": "none"
5620
+ }
5621
+ },
5622
+ "path": "aws-resource-apigateway-restapi.html"
5623
+ },
4942
5624
  "AWS::EC2::SubnetRouteTableAssociation": {
4943
5625
  "properties": [
4944
5626
  "RouteTableId",
@@ -5179,7 +5861,7 @@
5179
5861
  "update_causes": "none"
5180
5862
  },
5181
5863
  "Policies": {
5182
- "description": "A list of elastic load balancing policies to apply to this elastic load balancer.",
5864
+ "description": "A list of elastic load balancing policies to apply to this elastic load balancer. Specify only back-end server policies. For more information, see DescribeLoadBalancerPolicyTypes in the Elastic Load Balancing API Reference.",
5183
5865
  "required": false,
5184
5866
  "type": "Array",
5185
5867
  "update_causes": "none"
@@ -5341,6 +6023,48 @@
5341
6023
  },
5342
6024
  "path": "aws-properties-elasticache-subnetgroup.html"
5343
6025
  },
6026
+ "AWS::ApiGateway::Model": {
6027
+ "properties": [
6028
+ "ContentType",
6029
+ "Description",
6030
+ "Name",
6031
+ "RestApiId",
6032
+ "Schema"
6033
+ ],
6034
+ "full_properties": {
6035
+ "ContentType": {
6036
+ "description": "The content type for the model.",
6037
+ "required": false,
6038
+ "type": "String",
6039
+ "update_causes": "replacement"
6040
+ },
6041
+ "Description": {
6042
+ "description": "A description that identifies this model.",
6043
+ "required": false,
6044
+ "type": "String",
6045
+ "update_causes": "none"
6046
+ },
6047
+ "Name": {
6048
+ "description": "A name for the mode. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the model name. For more information, see Name Type.",
6049
+ "required": false,
6050
+ "type": "Unknown",
6051
+ "update_causes": "replacement"
6052
+ },
6053
+ "RestApiId": {
6054
+ "description": "The ID of a REST API with which to associate this model.",
6055
+ "required": true,
6056
+ "type": "String",
6057
+ "update_causes": "replacement"
6058
+ },
6059
+ "Schema": {
6060
+ "description": "The schema to use to transform data to one or more output formats.",
6061
+ "required": false,
6062
+ "type": "String",
6063
+ "update_causes": "none"
6064
+ }
6065
+ },
6066
+ "path": "aws-resource-apigateway-model.html"
6067
+ },
5344
6068
  "AWS::EC2::NetworkAclEntry": {
5345
6069
  "properties": [
5346
6070
  "CidrBlock",
@@ -5635,6 +6359,83 @@
5635
6359
  },
5636
6360
  "path": "aws-resource-directoryservice-simplead.html"
5637
6361
  },
6362
+ "AWS::ApiGateway::Method": {
6363
+ "properties": [
6364
+ "ApiKeyRequired",
6365
+ "AuthorizationType",
6366
+ "AuthorizerId",
6367
+ "HttpMethod",
6368
+ "Integration",
6369
+ "MethodResponses",
6370
+ "RequestModels",
6371
+ "RequestParameters",
6372
+ "ResourceId",
6373
+ "RestApiId"
6374
+ ],
6375
+ "full_properties": {
6376
+ "ApiKeyRequired": {
6377
+ "description": "Indicates whether the method requires clients to submit a valid API key.",
6378
+ "required": false,
6379
+ "type": "Boolean",
6380
+ "update_causes": "none"
6381
+ },
6382
+ "AuthorizationType": {
6383
+ "description": "The method's authorization type.",
6384
+ "required": true,
6385
+ "type": "String",
6386
+ "update_causes": "none"
6387
+ },
6388
+ "AuthorizerId": {
6389
+ "description": "The identifier of the authorizer to use on this method. If you specify this property, specify CUSTOM for the AuthorizationType property.",
6390
+ "required": false,
6391
+ "type": "Unknown",
6392
+ "update_causes": "none"
6393
+ },
6394
+ "HttpMethod": {
6395
+ "description": "The HTTP method that clients will use to call this method.",
6396
+ "required": true,
6397
+ "type": "String",
6398
+ "update_causes": "none"
6399
+ },
6400
+ "Integration": {
6401
+ "description": "The back-end system that the method calls when it receives a request.",
6402
+ "required": false,
6403
+ "type": "Unknown",
6404
+ "update_causes": "none"
6405
+ },
6406
+ "MethodResponses": {
6407
+ "description": "The responses that can be sent to the client who calls the method.",
6408
+ "required": false,
6409
+ "type": "Array",
6410
+ "update_causes": "none"
6411
+ },
6412
+ "RequestModels": {
6413
+ "description": "The resources used for the response's content type. Specify response models as key-value pairs (string-to-string maps), with a content type as the key and a Model resource name as the value.",
6414
+ "required": false,
6415
+ "type": "Unknown",
6416
+ "update_causes": "none"
6417
+ },
6418
+ "RequestParameters": {
6419
+ "description": "Request parameters that API Gateway accepts. Specify request parameters as key-value pairs (string-to-Boolean maps), with a source as the key and a Boolean as the value. The Boolean specifies whether a parameter is required. A source must match the following format method.request.location.name, where the location is querystring, path, or header, and name is a valid, unique parameter name.",
6420
+ "required": false,
6421
+ "type": "Unknown",
6422
+ "update_causes": "none"
6423
+ },
6424
+ "ResourceId": {
6425
+ "description": "The ID of an API Gateway resource. For root resource methods, specify the RestApi root resource ID, such as { \"Fn::GetAtt\": [\"MyRestApi\", \"RootResourceId\"] }.",
6426
+ "required": true,
6427
+ "type": "String",
6428
+ "update_causes": "none"
6429
+ },
6430
+ "RestApiId": {
6431
+ "description": "The ID of the RestApi resource in which API Gateway creates the method.",
6432
+ "required": true,
6433
+ "type": "String",
6434
+ "update_causes": "none"
6435
+ }
6436
+ },
6437
+ "path": "aws-resource-apigateway-method.html"
6438
+ },
5638
6439
  "AWS::Logs::LogStream": {
5639
6440
  "properties": [
5640
6441
  "LogGroupName",
@@ -5656,6 +6457,27 @@
5656
6457
  },
5657
6458
  "path": "aws-resource-logs-logstream.html"
5658
6459
  },
6460
+ "AWS::WAF::XssMatchSet": {
6461
+ "properties": [
6462
+ "Name",
6463
+ "XssMatchTuples"
6464
+ ],
6465
+ "full_properties": {
6466
+ "Name": {
6467
+ "description": "A friendly name or description for the XssMatchSet.",
6468
+ "required": true,
6469
+ "type": "String",
6470
+ "update_causes": "replacement"
6471
+ },
6472
+ "XssMatchTuples": {
6473
+ "description": "The parts of web requests that you want to inspect for cross-site scripting attacks.",
6474
+ "required": false,
6475
+ "type": "Array",
6476
+ "update_causes": "none"
6477
+ }
6478
+ },
6479
+ "path": "aws-resource-waf-xssmatchset.html"
6480
+ },
5659
6481
  "AWS::IAM::Role": {
5660
6482
  "properties": [
5661
6483
  "AssumeRolePolicyDocument",
@@ -5683,7 +6505,7 @@
5683
6505
  "update_causes": "replacement"
5684
6506
  },
5685
6507
  "Policies": {
5686
- "description": "The policies to associate with this role. Policies can also be specified externally. For sample templates that demonstrates both embedded and external policies, see Template Examples.",
6508
+ "description": "Important",
5687
6509
  "required": false,
5688
6510
  "type": "Array",
5689
6511
  "update_causes": "none"