aws-sdk-core 2.10.93 → 2.10.94

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "pagination": {
3
+ "DescribeEnvironmentMemberships": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults"
7
+ },
8
+ "ListEnvironments": {
9
+ "input_token": "nextToken",
10
+ "output_token": "nextToken",
11
+ "limit_key": "maxResults"
12
+ }
13
+ }
14
+ }
@@ -4857,7 +4857,8 @@
4857
4857
  "VpcId":{
4858
4858
  "shape":"String",
4859
4859
  "locationName":"vpcId"
4860
- }
4860
+ },
4861
+ "PeerRegion":{"shape":"String"}
4861
4862
  }
4862
4863
  },
4863
4864
  "CreateVpcPeeringConnectionResult":{
@@ -13378,7 +13379,10 @@
13378
13379
  },
13379
13380
  "PlacementStrategy":{
13380
13381
  "type":"string",
13381
- "enum":["cluster"]
13382
+ "enum":[
13383
+ "cluster",
13384
+ "spread"
13385
+ ]
13382
13386
  },
13383
13387
  "PlatformValues":{
13384
13388
  "type":"string",
@@ -18367,6 +18371,10 @@
18367
18371
  "VpcId":{
18368
18372
  "shape":"String",
18369
18373
  "locationName":"vpcId"
18374
+ },
18375
+ "Region":{
18376
+ "shape":"String",
18377
+ "locationName":"region"
18370
18378
  }
18371
18379
  }
18372
18380
  },
@@ -125,6 +125,21 @@
125
125
  {"shape":"ResourceConflictException"}
126
126
  ]
127
127
  },
128
+ "DeleteFunctionConcurrency":{
129
+ "name":"DeleteFunctionConcurrency",
130
+ "http":{
131
+ "method":"DELETE",
132
+ "requestUri":"/2017-10-31/functions/{FunctionName}/concurrency",
133
+ "responseCode":204
134
+ },
135
+ "input":{"shape":"DeleteFunctionConcurrencyRequest"},
136
+ "errors":[
137
+ {"shape":"ServiceException"},
138
+ {"shape":"ResourceNotFoundException"},
139
+ {"shape":"TooManyRequestsException"},
140
+ {"shape":"InvalidParameterValueException"}
141
+ ]
142
+ },
128
143
  "GetAccountSettings":{
129
144
  "name":"GetAccountSettings",
130
145
  "http":{
@@ -362,6 +377,22 @@
362
377
  {"shape":"CodeStorageExceededException"}
363
378
  ]
364
379
  },
380
+ "PutFunctionConcurrency":{
381
+ "name":"PutFunctionConcurrency",
382
+ "http":{
383
+ "method":"PUT",
384
+ "requestUri":"/2017-10-31/functions/{FunctionName}/concurrency",
385
+ "responseCode":200
386
+ },
387
+ "input":{"shape":"PutFunctionConcurrencyRequest"},
388
+ "output":{"shape":"Concurrency"},
389
+ "errors":[
390
+ {"shape":"ServiceException"},
391
+ {"shape":"InvalidParameterValueException"},
392
+ {"shape":"ResourceNotFoundException"},
393
+ {"shape":"TooManyRequestsException"}
394
+ ]
395
+ },
365
396
  "RemovePermission":{
366
397
  "name":"RemovePermission",
367
398
  "http":{
@@ -482,7 +513,8 @@
482
513
  "TotalCodeSize":{"shape":"Long"},
483
514
  "CodeSizeUnzipped":{"shape":"Long"},
484
515
  "CodeSizeZipped":{"shape":"Long"},
485
- "ConcurrentExecutions":{"shape":"Integer"}
516
+ "ConcurrentExecutions":{"shape":"Integer"},
517
+ "UnreservedConcurrentExecutions":{"shape":"UnreservedConcurrentExecutions"}
486
518
  }
487
519
  },
488
520
  "AccountUsage":{
@@ -593,6 +625,12 @@
593
625
  "error":{"httpStatusCode":400},
594
626
  "exception":true
595
627
  },
628
+ "Concurrency":{
629
+ "type":"structure",
630
+ "members":{
631
+ "ReservedConcurrentExecutions":{"shape":"ReservedConcurrentExecutions"}
632
+ }
633
+ },
596
634
  "CreateAliasRequest":{
597
635
  "type":"structure",
598
636
  "required":[
@@ -692,6 +730,17 @@
692
730
  }
693
731
  }
694
732
  },
733
+ "DeleteFunctionConcurrencyRequest":{
734
+ "type":"structure",
735
+ "required":["FunctionName"],
736
+ "members":{
737
+ "FunctionName":{
738
+ "shape":"FunctionName",
739
+ "location":"uri",
740
+ "locationName":"FunctionName"
741
+ }
742
+ }
743
+ },
695
744
  "DeleteFunctionRequest":{
696
745
  "type":"structure",
697
746
  "required":["FunctionName"],
@@ -953,7 +1002,8 @@
953
1002
  "members":{
954
1003
  "Configuration":{"shape":"FunctionConfiguration"},
955
1004
  "Code":{"shape":"FunctionCodeLocation"},
956
- "Tags":{"shape":"Tags"}
1005
+ "Tags":{"shape":"Tags"},
1006
+ "Concurrency":{"shape":"Concurrency"}
957
1007
  }
958
1008
  },
959
1009
  "GetPolicyRequest":{
@@ -1334,7 +1384,7 @@
1334
1384
  },
1335
1385
  "MemorySize":{
1336
1386
  "type":"integer",
1337
- "max":1536,
1387
+ "max":3008,
1338
1388
  "min":128
1339
1389
  },
1340
1390
  "NameSpacedFunctionArn":{
@@ -1379,6 +1429,21 @@
1379
1429
  "Description":{"shape":"Description"}
1380
1430
  }
1381
1431
  },
1432
+ "PutFunctionConcurrencyRequest":{
1433
+ "type":"structure",
1434
+ "required":[
1435
+ "FunctionName",
1436
+ "ReservedConcurrentExecutions"
1437
+ ],
1438
+ "members":{
1439
+ "FunctionName":{
1440
+ "shape":"FunctionName",
1441
+ "location":"uri",
1442
+ "locationName":"FunctionName"
1443
+ },
1444
+ "ReservedConcurrentExecutions":{"shape":"ReservedConcurrentExecutions"}
1445
+ }
1446
+ },
1382
1447
  "Qualifier":{
1383
1448
  "type":"string",
1384
1449
  "max":128,
@@ -1418,6 +1483,10 @@
1418
1483
  "error":{"httpStatusCode":413},
1419
1484
  "exception":true
1420
1485
  },
1486
+ "ReservedConcurrentExecutions":{
1487
+ "type":"integer",
1488
+ "min":0
1489
+ },
1421
1490
  "ResourceArn":{
1422
1491
  "type":"string",
1423
1492
  "pattern":"(arn:aws:[a-z0-9-.]+:.*)|()"
@@ -1549,6 +1618,8 @@
1549
1618
  "enum":[
1550
1619
  "ConcurrentInvocationLimitExceeded",
1551
1620
  "FunctionInvocationRateLimitExceeded",
1621
+ "ReservedFunctionConcurrentInvocationLimitExceeded",
1622
+ "ReservedFunctionInvocationRateLimitExceeded",
1552
1623
  "CallerRateLimitExceeded"
1553
1624
  ]
1554
1625
  },
@@ -1591,6 +1662,10 @@
1591
1662
  "PassThrough"
1592
1663
  ]
1593
1664
  },
1665
+ "UnreservedConcurrentExecutions":{
1666
+ "type":"integer",
1667
+ "min":0
1668
+ },
1594
1669
  "UnsupportedMediaTypeException":{
1595
1670
  "type":"structure",
1596
1671
  "members":{
@@ -0,0 +1,1241 @@
1
+ {
2
+ "metadata" : {
3
+ "apiVersion" : "2017-09-08",
4
+ "endpointPrefix" : "serverlessrepo",
5
+ "signingName" : "serverlessrepo",
6
+ "serviceFullName" : "AWSServerlessApplicationRepository",
7
+ "serviceId" : "ServerlessApplicationRepository",
8
+ "protocol" : "rest-json",
9
+ "jsonVersion" : "1.1",
10
+ "uid" : "serverlessrepo-2017-09-08",
11
+ "signatureVersion" : "v4"
12
+ },
13
+ "operations" : {
14
+ "CreateApplication" : {
15
+ "name" : "CreateApplication",
16
+ "http" : {
17
+ "method" : "POST",
18
+ "requestUri" : "/applications",
19
+ "responseCode" : 201
20
+ },
21
+ "input" : {
22
+ "shape" : "CreateApplicationRequest"
23
+ },
24
+ "output" : {
25
+ "shape" : "CreateApplicationResponse"
26
+ },
27
+ "errors" : [ {
28
+ "shape" : "TooManyRequestsException"
29
+ }, {
30
+ "shape" : "BadRequestException"
31
+ }, {
32
+ "shape" : "InternalServerErrorException"
33
+ }, {
34
+ "shape" : "ConflictException"
35
+ }, {
36
+ "shape" : "ForbiddenException"
37
+ } ]
38
+ },
39
+ "CreateApplicationVersion" : {
40
+ "name" : "CreateApplicationVersion",
41
+ "http" : {
42
+ "method" : "PUT",
43
+ "requestUri" : "/applications/{applicationId}/versions/{semanticVersion}",
44
+ "responseCode" : 201
45
+ },
46
+ "input" : {
47
+ "shape" : "CreateApplicationVersionRequest"
48
+ },
49
+ "output" : {
50
+ "shape" : "CreateApplicationVersionResponse"
51
+ },
52
+ "errors" : [ {
53
+ "shape" : "TooManyRequestsException"
54
+ }, {
55
+ "shape" : "BadRequestException"
56
+ }, {
57
+ "shape" : "InternalServerErrorException"
58
+ }, {
59
+ "shape" : "ConflictException"
60
+ }, {
61
+ "shape" : "ForbiddenException"
62
+ } ]
63
+ },
64
+ "CreateCloudFormationChangeSet" : {
65
+ "name" : "CreateCloudFormationChangeSet",
66
+ "http" : {
67
+ "method" : "POST",
68
+ "requestUri" : "/applications/{applicationId}/changesets",
69
+ "responseCode" : 201
70
+ },
71
+ "input" : {
72
+ "shape" : "CreateCloudFormationChangeSetRequest"
73
+ },
74
+ "output" : {
75
+ "shape" : "CreateCloudFormationChangeSetResponse"
76
+ },
77
+ "errors" : [ {
78
+ "shape" : "TooManyRequestsException"
79
+ }, {
80
+ "shape" : "BadRequestException"
81
+ }, {
82
+ "shape" : "InternalServerErrorException"
83
+ }, {
84
+ "shape" : "ForbiddenException"
85
+ } ]
86
+ },
87
+ "GetApplication" : {
88
+ "name" : "GetApplication",
89
+ "http" : {
90
+ "method" : "GET",
91
+ "requestUri" : "/applications/{applicationId}",
92
+ "responseCode" : 200
93
+ },
94
+ "input" : {
95
+ "shape" : "GetApplicationRequest"
96
+ },
97
+ "output" : {
98
+ "shape" : "GetApplicationResponse"
99
+ },
100
+ "errors" : [ {
101
+ "shape" : "NotFoundException"
102
+ }, {
103
+ "shape" : "TooManyRequestsException"
104
+ }, {
105
+ "shape" : "BadRequestException"
106
+ }, {
107
+ "shape" : "InternalServerErrorException"
108
+ }, {
109
+ "shape" : "ForbiddenException"
110
+ } ]
111
+ },
112
+ "GetApplicationPolicy" : {
113
+ "name" : "GetApplicationPolicy",
114
+ "http" : {
115
+ "method" : "GET",
116
+ "requestUri" : "/applications/{applicationId}/policy",
117
+ "responseCode" : 200
118
+ },
119
+ "input" : {
120
+ "shape" : "GetApplicationPolicyRequest"
121
+ },
122
+ "output" : {
123
+ "shape" : "GetApplicationPolicyResponse"
124
+ },
125
+ "errors" : [ {
126
+ "shape" : "NotFoundException"
127
+ }, {
128
+ "shape" : "TooManyRequestsException"
129
+ }, {
130
+ "shape" : "BadRequestException"
131
+ }, {
132
+ "shape" : "InternalServerErrorException"
133
+ }, {
134
+ "shape" : "ForbiddenException"
135
+ } ]
136
+ },
137
+ "ListApplicationVersions" : {
138
+ "name" : "ListApplicationVersions",
139
+ "http" : {
140
+ "method" : "GET",
141
+ "requestUri" : "/applications/{applicationId}/versions",
142
+ "responseCode" : 200
143
+ },
144
+ "input" : {
145
+ "shape" : "ListApplicationVersionsRequest"
146
+ },
147
+ "output" : {
148
+ "shape" : "ListApplicationVersionsResponse"
149
+ },
150
+ "errors" : [ {
151
+ "shape" : "NotFoundException"
152
+ }, {
153
+ "shape" : "TooManyRequestsException"
154
+ }, {
155
+ "shape" : "BadRequestException"
156
+ }, {
157
+ "shape" : "InternalServerErrorException"
158
+ }, {
159
+ "shape" : "ForbiddenException"
160
+ } ]
161
+ },
162
+ "ListApplications" : {
163
+ "name" : "ListApplications",
164
+ "http" : {
165
+ "method" : "GET",
166
+ "requestUri" : "/applications",
167
+ "responseCode" : 200
168
+ },
169
+ "input" : {
170
+ "shape" : "ListApplicationsRequest"
171
+ },
172
+ "output" : {
173
+ "shape" : "ListApplicationsResponse"
174
+ },
175
+ "errors" : [ {
176
+ "shape" : "NotFoundException"
177
+ }, {
178
+ "shape" : "BadRequestException"
179
+ }, {
180
+ "shape" : "InternalServerErrorException"
181
+ }, {
182
+ "shape" : "ForbiddenException"
183
+ } ]
184
+ },
185
+ "PutApplicationPolicy" : {
186
+ "name" : "PutApplicationPolicy",
187
+ "http" : {
188
+ "method" : "PUT",
189
+ "requestUri" : "/applications/{applicationId}/policy",
190
+ "responseCode" : 200
191
+ },
192
+ "input" : {
193
+ "shape" : "PutApplicationPolicyRequest"
194
+ },
195
+ "output" : {
196
+ "shape" : "PutApplicationPolicyResponse"
197
+ },
198
+ "errors" : [ {
199
+ "shape" : "NotFoundException"
200
+ }, {
201
+ "shape" : "TooManyRequestsException"
202
+ }, {
203
+ "shape" : "BadRequestException"
204
+ }, {
205
+ "shape" : "InternalServerErrorException"
206
+ }, {
207
+ "shape" : "ForbiddenException"
208
+ } ]
209
+ },
210
+ "UpdateApplication" : {
211
+ "name" : "UpdateApplication",
212
+ "http" : {
213
+ "method" : "PATCH",
214
+ "requestUri" : "/applications/{applicationId}",
215
+ "responseCode" : 200
216
+ },
217
+ "input" : {
218
+ "shape" : "UpdateApplicationRequest"
219
+ },
220
+ "output" : {
221
+ "shape" : "UpdateApplicationResponse"
222
+ },
223
+ "errors" : [ {
224
+ "shape" : "BadRequestException"
225
+ }, {
226
+ "shape" : "InternalServerErrorException"
227
+ }, {
228
+ "shape" : "ForbiddenException"
229
+ }, {
230
+ "shape" : "NotFoundException"
231
+ }, {
232
+ "shape" : "TooManyRequestsException"
233
+ }, {
234
+ "shape" : "ConflictException"
235
+ } ]
236
+ }
237
+ },
238
+ "shapes" : {
239
+ "Application" : {
240
+ "type" : "structure",
241
+ "members" : {
242
+ "ApplicationId" : {
243
+ "shape" : "__string",
244
+ "locationName" : "applicationId"
245
+ },
246
+ "Author" : {
247
+ "shape" : "__string",
248
+ "locationName" : "author"
249
+ },
250
+ "CreationTime" : {
251
+ "shape" : "__string",
252
+ "locationName" : "creationTime"
253
+ },
254
+ "Description" : {
255
+ "shape" : "__string",
256
+ "locationName" : "description"
257
+ },
258
+ "Labels" : {
259
+ "shape" : "ListOf__string",
260
+ "locationName" : "labels"
261
+ },
262
+ "LicenseUrl" : {
263
+ "shape" : "__string",
264
+ "locationName" : "licenseUrl"
265
+ },
266
+ "Name" : {
267
+ "shape" : "__string",
268
+ "locationName" : "name"
269
+ },
270
+ "ReadmeUrl" : {
271
+ "shape" : "__string",
272
+ "locationName" : "readmeUrl"
273
+ },
274
+ "SpdxLicenseId" : {
275
+ "shape" : "__string",
276
+ "locationName" : "spdxLicenseId"
277
+ },
278
+ "Version" : {
279
+ "shape" : "Version",
280
+ "locationName" : "version"
281
+ }
282
+ }
283
+ },
284
+ "ApplicationPage" : {
285
+ "type" : "structure",
286
+ "members" : {
287
+ "Applications" : {
288
+ "shape" : "ListOfApplicationSummary",
289
+ "locationName" : "applications"
290
+ },
291
+ "NextToken" : {
292
+ "shape" : "__string",
293
+ "locationName" : "nextToken"
294
+ }
295
+ }
296
+ },
297
+ "ApplicationPolicy" : {
298
+ "type" : "structure",
299
+ "members" : {
300
+ "Statements" : {
301
+ "shape" : "ListOfApplicationPolicyStatement",
302
+ "locationName" : "statements"
303
+ }
304
+ }
305
+ },
306
+ "ApplicationPolicyStatement" : {
307
+ "type" : "structure",
308
+ "members" : {
309
+ "Actions" : {
310
+ "shape" : "ListOf__string",
311
+ "locationName" : "actions"
312
+ },
313
+ "Principals" : {
314
+ "shape" : "ListOf__string",
315
+ "locationName" : "principals"
316
+ },
317
+ "StatementId" : {
318
+ "shape" : "__string",
319
+ "locationName" : "statementId"
320
+ }
321
+ }
322
+ },
323
+ "ApplicationSummary" : {
324
+ "type" : "structure",
325
+ "members" : {
326
+ "ApplicationId" : {
327
+ "shape" : "__string",
328
+ "locationName" : "applicationId"
329
+ },
330
+ "Author" : {
331
+ "shape" : "__string",
332
+ "locationName" : "author"
333
+ },
334
+ "CreationTime" : {
335
+ "shape" : "__string",
336
+ "locationName" : "creationTime"
337
+ },
338
+ "Description" : {
339
+ "shape" : "__string",
340
+ "locationName" : "description"
341
+ },
342
+ "Labels" : {
343
+ "shape" : "ListOf__string",
344
+ "locationName" : "labels"
345
+ },
346
+ "Name" : {
347
+ "shape" : "__string",
348
+ "locationName" : "name"
349
+ },
350
+ "SpdxLicenseId" : {
351
+ "shape" : "__string",
352
+ "locationName" : "spdxLicenseId"
353
+ }
354
+ }
355
+ },
356
+ "ApplicationVersionPage" : {
357
+ "type" : "structure",
358
+ "members" : {
359
+ "NextToken" : {
360
+ "shape" : "__string",
361
+ "locationName" : "nextToken"
362
+ },
363
+ "Versions" : {
364
+ "shape" : "ListOfVersionSummary",
365
+ "locationName" : "versions"
366
+ }
367
+ }
368
+ },
369
+ "BadRequestException" : {
370
+ "type" : "structure",
371
+ "members" : {
372
+ "ErrorCode" : {
373
+ "shape" : "__string",
374
+ "locationName" : "errorCode"
375
+ },
376
+ "Message" : {
377
+ "shape" : "__string",
378
+ "locationName" : "message"
379
+ }
380
+ },
381
+ "exception" : true,
382
+ "error" : {
383
+ "httpStatusCode" : 400
384
+ }
385
+ },
386
+ "ChangeSetDetails" : {
387
+ "type" : "structure",
388
+ "members" : {
389
+ "ApplicationId" : {
390
+ "shape" : "__string",
391
+ "locationName" : "applicationId"
392
+ },
393
+ "ChangeSetId" : {
394
+ "shape" : "__string",
395
+ "locationName" : "changeSetId"
396
+ },
397
+ "SemanticVersion" : {
398
+ "shape" : "__string",
399
+ "locationName" : "semanticVersion"
400
+ },
401
+ "StackId" : {
402
+ "shape" : "__string",
403
+ "locationName" : "stackId"
404
+ }
405
+ }
406
+ },
407
+ "ConflictException" : {
408
+ "type" : "structure",
409
+ "members" : {
410
+ "ErrorCode" : {
411
+ "shape" : "__string",
412
+ "locationName" : "errorCode"
413
+ },
414
+ "Message" : {
415
+ "shape" : "__string",
416
+ "locationName" : "message"
417
+ }
418
+ },
419
+ "exception" : true,
420
+ "error" : {
421
+ "httpStatusCode" : 409
422
+ }
423
+ },
424
+ "CreateApplicationInput" : {
425
+ "type" : "structure",
426
+ "members" : {
427
+ "Author" : {
428
+ "shape" : "__string",
429
+ "locationName" : "author"
430
+ },
431
+ "Description" : {
432
+ "shape" : "__string",
433
+ "locationName" : "description"
434
+ },
435
+ "Labels" : {
436
+ "shape" : "ListOf__string",
437
+ "locationName" : "labels"
438
+ },
439
+ "LicenseBody" : {
440
+ "shape" : "__string",
441
+ "locationName" : "licenseBody"
442
+ },
443
+ "LicenseUrl" : {
444
+ "shape" : "__string",
445
+ "locationName" : "licenseUrl"
446
+ },
447
+ "Name" : {
448
+ "shape" : "__string",
449
+ "locationName" : "name"
450
+ },
451
+ "ReadmeBody" : {
452
+ "shape" : "__string",
453
+ "locationName" : "readmeBody"
454
+ },
455
+ "ReadmeUrl" : {
456
+ "shape" : "__string",
457
+ "locationName" : "readmeUrl"
458
+ },
459
+ "SemanticVersion" : {
460
+ "shape" : "__string",
461
+ "locationName" : "semanticVersion"
462
+ },
463
+ "SourceCodeUrl" : {
464
+ "shape" : "__string",
465
+ "locationName" : "sourceCodeUrl"
466
+ },
467
+ "SpdxLicenseId" : {
468
+ "shape" : "__string",
469
+ "locationName" : "spdxLicenseId"
470
+ },
471
+ "TemplateBody" : {
472
+ "shape" : "__string",
473
+ "locationName" : "templateBody"
474
+ },
475
+ "TemplateUrl" : {
476
+ "shape" : "__string",
477
+ "locationName" : "templateUrl"
478
+ }
479
+ }
480
+ },
481
+ "CreateApplicationRequest" : {
482
+ "type" : "structure",
483
+ "members" : {
484
+ "Author" : {
485
+ "shape" : "__string",
486
+ "locationName" : "author"
487
+ },
488
+ "Description" : {
489
+ "shape" : "__string",
490
+ "locationName" : "description"
491
+ },
492
+ "Labels" : {
493
+ "shape" : "ListOf__string",
494
+ "locationName" : "labels"
495
+ },
496
+ "LicenseBody" : {
497
+ "shape" : "__string",
498
+ "locationName" : "licenseBody"
499
+ },
500
+ "LicenseUrl" : {
501
+ "shape" : "__string",
502
+ "locationName" : "licenseUrl"
503
+ },
504
+ "Name" : {
505
+ "shape" : "__string",
506
+ "locationName" : "name"
507
+ },
508
+ "ReadmeBody" : {
509
+ "shape" : "__string",
510
+ "locationName" : "readmeBody"
511
+ },
512
+ "ReadmeUrl" : {
513
+ "shape" : "__string",
514
+ "locationName" : "readmeUrl"
515
+ },
516
+ "SemanticVersion" : {
517
+ "shape" : "__string",
518
+ "locationName" : "semanticVersion"
519
+ },
520
+ "SourceCodeUrl" : {
521
+ "shape" : "__string",
522
+ "locationName" : "sourceCodeUrl"
523
+ },
524
+ "SpdxLicenseId" : {
525
+ "shape" : "__string",
526
+ "locationName" : "spdxLicenseId"
527
+ },
528
+ "TemplateBody" : {
529
+ "shape" : "__string",
530
+ "locationName" : "templateBody"
531
+ },
532
+ "TemplateUrl" : {
533
+ "shape" : "__string",
534
+ "locationName" : "templateUrl"
535
+ }
536
+ }
537
+ },
538
+ "CreateApplicationResponse" : {
539
+ "type" : "structure",
540
+ "members" : {
541
+ "ApplicationId" : {
542
+ "shape" : "__string",
543
+ "locationName" : "applicationId"
544
+ },
545
+ "Author" : {
546
+ "shape" : "__string",
547
+ "locationName" : "author"
548
+ },
549
+ "CreationTime" : {
550
+ "shape" : "__string",
551
+ "locationName" : "creationTime"
552
+ },
553
+ "Description" : {
554
+ "shape" : "__string",
555
+ "locationName" : "description"
556
+ },
557
+ "Labels" : {
558
+ "shape" : "ListOf__string",
559
+ "locationName" : "labels"
560
+ },
561
+ "LicenseUrl" : {
562
+ "shape" : "__string",
563
+ "locationName" : "licenseUrl"
564
+ },
565
+ "Name" : {
566
+ "shape" : "__string",
567
+ "locationName" : "name"
568
+ },
569
+ "ReadmeUrl" : {
570
+ "shape" : "__string",
571
+ "locationName" : "readmeUrl"
572
+ },
573
+ "SpdxLicenseId" : {
574
+ "shape" : "__string",
575
+ "locationName" : "spdxLicenseId"
576
+ },
577
+ "Version" : {
578
+ "shape" : "Version",
579
+ "locationName" : "version"
580
+ }
581
+ }
582
+ },
583
+ "CreateApplicationVersionInput" : {
584
+ "type" : "structure",
585
+ "members" : {
586
+ "SourceCodeUrl" : {
587
+ "shape" : "__string",
588
+ "locationName" : "sourceCodeUrl"
589
+ },
590
+ "TemplateBody" : {
591
+ "shape" : "__string",
592
+ "locationName" : "templateBody"
593
+ },
594
+ "TemplateUrl" : {
595
+ "shape" : "__string",
596
+ "locationName" : "templateUrl"
597
+ }
598
+ }
599
+ },
600
+ "CreateApplicationVersionRequest" : {
601
+ "type" : "structure",
602
+ "members" : {
603
+ "ApplicationId" : {
604
+ "shape" : "__string",
605
+ "location" : "uri",
606
+ "locationName" : "applicationId"
607
+ },
608
+ "SemanticVersion" : {
609
+ "shape" : "__string",
610
+ "location" : "uri",
611
+ "locationName" : "semanticVersion"
612
+ },
613
+ "SourceCodeUrl" : {
614
+ "shape" : "__string",
615
+ "locationName" : "sourceCodeUrl"
616
+ },
617
+ "TemplateBody" : {
618
+ "shape" : "__string",
619
+ "locationName" : "templateBody"
620
+ },
621
+ "TemplateUrl" : {
622
+ "shape" : "__string",
623
+ "locationName" : "templateUrl"
624
+ }
625
+ },
626
+ "required" : [ "ApplicationId", "SemanticVersion" ]
627
+ },
628
+ "CreateApplicationVersionResponse" : {
629
+ "type" : "structure",
630
+ "members" : {
631
+ "ApplicationId" : {
632
+ "shape" : "__string",
633
+ "locationName" : "applicationId"
634
+ },
635
+ "CreationTime" : {
636
+ "shape" : "__string",
637
+ "locationName" : "creationTime"
638
+ },
639
+ "ParameterDefinitions" : {
640
+ "shape" : "ListOfParameterDefinition",
641
+ "locationName" : "parameterDefinitions"
642
+ },
643
+ "SemanticVersion" : {
644
+ "shape" : "__string",
645
+ "locationName" : "semanticVersion"
646
+ },
647
+ "SourceCodeUrl" : {
648
+ "shape" : "__string",
649
+ "locationName" : "sourceCodeUrl"
650
+ },
651
+ "TemplateUrl" : {
652
+ "shape" : "__string",
653
+ "locationName" : "templateUrl"
654
+ }
655
+ }
656
+ },
657
+ "CreateCloudFormationChangeSetInput" : {
658
+ "type" : "structure",
659
+ "members" : {
660
+ "ParameterOverrides" : {
661
+ "shape" : "ListOfParameterValue",
662
+ "locationName" : "parameterOverrides"
663
+ },
664
+ "SemanticVersion" : {
665
+ "shape" : "__string",
666
+ "locationName" : "semanticVersion"
667
+ },
668
+ "StackName" : {
669
+ "shape" : "__string",
670
+ "locationName" : "stackName"
671
+ }
672
+ }
673
+ },
674
+ "CreateCloudFormationChangeSetRequest" : {
675
+ "type" : "structure",
676
+ "members" : {
677
+ "ApplicationId" : {
678
+ "shape" : "__string",
679
+ "location" : "uri",
680
+ "locationName" : "applicationId"
681
+ },
682
+ "ParameterOverrides" : {
683
+ "shape" : "ListOfParameterValue",
684
+ "locationName" : "parameterOverrides"
685
+ },
686
+ "SemanticVersion" : {
687
+ "shape" : "__string",
688
+ "locationName" : "semanticVersion"
689
+ },
690
+ "StackName" : {
691
+ "shape" : "__string",
692
+ "locationName" : "stackName"
693
+ }
694
+ },
695
+ "required" : [ "ApplicationId" ]
696
+ },
697
+ "CreateCloudFormationChangeSetResponse" : {
698
+ "type" : "structure",
699
+ "members" : {
700
+ "ApplicationId" : {
701
+ "shape" : "__string",
702
+ "locationName" : "applicationId"
703
+ },
704
+ "ChangeSetId" : {
705
+ "shape" : "__string",
706
+ "locationName" : "changeSetId"
707
+ },
708
+ "SemanticVersion" : {
709
+ "shape" : "__string",
710
+ "locationName" : "semanticVersion"
711
+ },
712
+ "StackId" : {
713
+ "shape" : "__string",
714
+ "locationName" : "stackId"
715
+ }
716
+ }
717
+ },
718
+ "ForbiddenException" : {
719
+ "type" : "structure",
720
+ "members" : {
721
+ "ErrorCode" : {
722
+ "shape" : "__string",
723
+ "locationName" : "errorCode"
724
+ },
725
+ "Message" : {
726
+ "shape" : "__string",
727
+ "locationName" : "message"
728
+ }
729
+ },
730
+ "exception" : true,
731
+ "error" : {
732
+ "httpStatusCode" : 403
733
+ }
734
+ },
735
+ "GetApplicationPolicyRequest" : {
736
+ "type" : "structure",
737
+ "members" : {
738
+ "ApplicationId" : {
739
+ "shape" : "__string",
740
+ "location" : "uri",
741
+ "locationName" : "applicationId"
742
+ }
743
+ },
744
+ "required" : [ "ApplicationId" ]
745
+ },
746
+ "GetApplicationPolicyResponse" : {
747
+ "type" : "structure",
748
+ "members" : {
749
+ "Statements" : {
750
+ "shape" : "ListOfApplicationPolicyStatement",
751
+ "locationName" : "statements"
752
+ }
753
+ }
754
+ },
755
+ "GetApplicationRequest" : {
756
+ "type" : "structure",
757
+ "members" : {
758
+ "ApplicationId" : {
759
+ "shape" : "__string",
760
+ "location" : "uri",
761
+ "locationName" : "applicationId"
762
+ },
763
+ "SemanticVersion" : {
764
+ "shape" : "__string",
765
+ "location" : "querystring",
766
+ "locationName" : "semanticVersion"
767
+ }
768
+ },
769
+ "required" : [ "ApplicationId" ]
770
+ },
771
+ "GetApplicationResponse" : {
772
+ "type" : "structure",
773
+ "members" : {
774
+ "ApplicationId" : {
775
+ "shape" : "__string",
776
+ "locationName" : "applicationId"
777
+ },
778
+ "Author" : {
779
+ "shape" : "__string",
780
+ "locationName" : "author"
781
+ },
782
+ "CreationTime" : {
783
+ "shape" : "__string",
784
+ "locationName" : "creationTime"
785
+ },
786
+ "Description" : {
787
+ "shape" : "__string",
788
+ "locationName" : "description"
789
+ },
790
+ "Labels" : {
791
+ "shape" : "ListOf__string",
792
+ "locationName" : "labels"
793
+ },
794
+ "LicenseUrl" : {
795
+ "shape" : "__string",
796
+ "locationName" : "licenseUrl"
797
+ },
798
+ "Name" : {
799
+ "shape" : "__string",
800
+ "locationName" : "name"
801
+ },
802
+ "ReadmeUrl" : {
803
+ "shape" : "__string",
804
+ "locationName" : "readmeUrl"
805
+ },
806
+ "SpdxLicenseId" : {
807
+ "shape" : "__string",
808
+ "locationName" : "spdxLicenseId"
809
+ },
810
+ "Version" : {
811
+ "shape" : "Version",
812
+ "locationName" : "version"
813
+ }
814
+ }
815
+ },
816
+ "InternalServerErrorException" : {
817
+ "type" : "structure",
818
+ "members" : {
819
+ "ErrorCode" : {
820
+ "shape" : "__string",
821
+ "locationName" : "errorCode"
822
+ },
823
+ "Message" : {
824
+ "shape" : "__string",
825
+ "locationName" : "message"
826
+ }
827
+ },
828
+ "exception" : true,
829
+ "error" : {
830
+ "httpStatusCode" : 500
831
+ }
832
+ },
833
+ "ListApplicationVersionsRequest" : {
834
+ "type" : "structure",
835
+ "members" : {
836
+ "ApplicationId" : {
837
+ "shape" : "__string",
838
+ "location" : "uri",
839
+ "locationName" : "applicationId"
840
+ },
841
+ "MaxItems" : {
842
+ "shape" : "MaxItems",
843
+ "location" : "querystring",
844
+ "locationName" : "maxItems"
845
+ },
846
+ "NextToken" : {
847
+ "shape" : "__string",
848
+ "location" : "querystring",
849
+ "locationName" : "nextToken"
850
+ }
851
+ },
852
+ "required" : [ "ApplicationId" ]
853
+ },
854
+ "ListApplicationVersionsResponse" : {
855
+ "type" : "structure",
856
+ "members" : {
857
+ "NextToken" : {
858
+ "shape" : "__string",
859
+ "locationName" : "nextToken"
860
+ },
861
+ "Versions" : {
862
+ "shape" : "ListOfVersionSummary",
863
+ "locationName" : "versions"
864
+ }
865
+ }
866
+ },
867
+ "ListApplicationsRequest" : {
868
+ "type" : "structure",
869
+ "members" : {
870
+ "MaxItems" : {
871
+ "shape" : "MaxItems",
872
+ "location" : "querystring",
873
+ "locationName" : "maxItems"
874
+ },
875
+ "NextToken" : {
876
+ "shape" : "__string",
877
+ "location" : "querystring",
878
+ "locationName" : "nextToken"
879
+ }
880
+ }
881
+ },
882
+ "ListApplicationsResponse" : {
883
+ "type" : "structure",
884
+ "members" : {
885
+ "Applications" : {
886
+ "shape" : "ListOfApplicationSummary",
887
+ "locationName" : "applications"
888
+ },
889
+ "NextToken" : {
890
+ "shape" : "__string",
891
+ "locationName" : "nextToken"
892
+ }
893
+ }
894
+ },
895
+ "ListOfApplicationPolicyStatement" : {
896
+ "type" : "list",
897
+ "member" : {
898
+ "shape" : "ApplicationPolicyStatement"
899
+ }
900
+ },
901
+ "ListOfApplicationSummary" : {
902
+ "type" : "list",
903
+ "member" : {
904
+ "shape" : "ApplicationSummary"
905
+ }
906
+ },
907
+ "ListOfParameterDefinition" : {
908
+ "type" : "list",
909
+ "member" : {
910
+ "shape" : "ParameterDefinition"
911
+ }
912
+ },
913
+ "ListOfParameterValue" : {
914
+ "type" : "list",
915
+ "member" : {
916
+ "shape" : "ParameterValue"
917
+ }
918
+ },
919
+ "ListOfVersionSummary" : {
920
+ "type" : "list",
921
+ "member" : {
922
+ "shape" : "VersionSummary"
923
+ }
924
+ },
925
+ "ListOf__string" : {
926
+ "type" : "list",
927
+ "member" : {
928
+ "shape" : "__string"
929
+ }
930
+ },
931
+ "MaxItems" : {
932
+ "type" : "integer",
933
+ "min" : 1,
934
+ "max" : 100
935
+ },
936
+ "NotFoundException" : {
937
+ "type" : "structure",
938
+ "members" : {
939
+ "ErrorCode" : {
940
+ "shape" : "__string",
941
+ "locationName" : "errorCode"
942
+ },
943
+ "Message" : {
944
+ "shape" : "__string",
945
+ "locationName" : "message"
946
+ }
947
+ },
948
+ "exception" : true,
949
+ "error" : {
950
+ "httpStatusCode" : 404
951
+ }
952
+ },
953
+ "ParameterDefinition" : {
954
+ "type" : "structure",
955
+ "members" : {
956
+ "AllowedPattern" : {
957
+ "shape" : "__string",
958
+ "locationName" : "allowedPattern"
959
+ },
960
+ "AllowedValues" : {
961
+ "shape" : "ListOf__string",
962
+ "locationName" : "allowedValues"
963
+ },
964
+ "ConstraintDescription" : {
965
+ "shape" : "__string",
966
+ "locationName" : "constraintDescription"
967
+ },
968
+ "DefaultValue" : {
969
+ "shape" : "__string",
970
+ "locationName" : "defaultValue"
971
+ },
972
+ "Description" : {
973
+ "shape" : "__string",
974
+ "locationName" : "description"
975
+ },
976
+ "MaxLength" : {
977
+ "shape" : "__integer",
978
+ "locationName" : "maxLength"
979
+ },
980
+ "MaxValue" : {
981
+ "shape" : "__integer",
982
+ "locationName" : "maxValue"
983
+ },
984
+ "MinLength" : {
985
+ "shape" : "__integer",
986
+ "locationName" : "minLength"
987
+ },
988
+ "MinValue" : {
989
+ "shape" : "__integer",
990
+ "locationName" : "minValue"
991
+ },
992
+ "Name" : {
993
+ "shape" : "__string",
994
+ "locationName" : "name"
995
+ },
996
+ "NoEcho" : {
997
+ "shape" : "__boolean",
998
+ "locationName" : "noEcho"
999
+ },
1000
+ "ReferencedByResources" : {
1001
+ "shape" : "ListOf__string",
1002
+ "locationName" : "referencedByResources"
1003
+ },
1004
+ "Type" : {
1005
+ "shape" : "__string",
1006
+ "locationName" : "type"
1007
+ }
1008
+ }
1009
+ },
1010
+ "ParameterValue" : {
1011
+ "type" : "structure",
1012
+ "members" : {
1013
+ "Name" : {
1014
+ "shape" : "__string",
1015
+ "locationName" : "name"
1016
+ },
1017
+ "Value" : {
1018
+ "shape" : "__string",
1019
+ "locationName" : "value"
1020
+ }
1021
+ }
1022
+ },
1023
+ "PutApplicationPolicyRequest" : {
1024
+ "type" : "structure",
1025
+ "members" : {
1026
+ "ApplicationId" : {
1027
+ "shape" : "__string",
1028
+ "location" : "uri",
1029
+ "locationName" : "applicationId"
1030
+ },
1031
+ "Statements" : {
1032
+ "shape" : "ListOfApplicationPolicyStatement",
1033
+ "locationName" : "statements"
1034
+ }
1035
+ },
1036
+ "required" : [ "ApplicationId" ]
1037
+ },
1038
+ "PutApplicationPolicyResponse" : {
1039
+ "type" : "structure",
1040
+ "members" : {
1041
+ "Statements" : {
1042
+ "shape" : "ListOfApplicationPolicyStatement",
1043
+ "locationName" : "statements"
1044
+ }
1045
+ }
1046
+ },
1047
+ "TooManyRequestsException" : {
1048
+ "type" : "structure",
1049
+ "members" : {
1050
+ "ErrorCode" : {
1051
+ "shape" : "__string",
1052
+ "locationName" : "errorCode"
1053
+ },
1054
+ "Message" : {
1055
+ "shape" : "__string",
1056
+ "locationName" : "message"
1057
+ }
1058
+ },
1059
+ "exception" : true,
1060
+ "error" : {
1061
+ "httpStatusCode" : 429
1062
+ }
1063
+ },
1064
+ "UpdateApplicationInput" : {
1065
+ "type" : "structure",
1066
+ "members" : {
1067
+ "Author" : {
1068
+ "shape" : "__string",
1069
+ "locationName" : "author"
1070
+ },
1071
+ "Description" : {
1072
+ "shape" : "__string",
1073
+ "locationName" : "description"
1074
+ },
1075
+ "Labels" : {
1076
+ "shape" : "ListOf__string",
1077
+ "locationName" : "labels"
1078
+ },
1079
+ "ReadmeBody" : {
1080
+ "shape" : "__string",
1081
+ "locationName" : "readmeBody"
1082
+ },
1083
+ "ReadmeUrl" : {
1084
+ "shape" : "__string",
1085
+ "locationName" : "readmeUrl"
1086
+ }
1087
+ }
1088
+ },
1089
+ "UpdateApplicationRequest" : {
1090
+ "type" : "structure",
1091
+ "members" : {
1092
+ "ApplicationId" : {
1093
+ "shape" : "__string",
1094
+ "location" : "uri",
1095
+ "locationName" : "applicationId"
1096
+ },
1097
+ "Author" : {
1098
+ "shape" : "__string",
1099
+ "locationName" : "author"
1100
+ },
1101
+ "Description" : {
1102
+ "shape" : "__string",
1103
+ "locationName" : "description"
1104
+ },
1105
+ "Labels" : {
1106
+ "shape" : "ListOf__string",
1107
+ "locationName" : "labels"
1108
+ },
1109
+ "ReadmeBody" : {
1110
+ "shape" : "__string",
1111
+ "locationName" : "readmeBody"
1112
+ },
1113
+ "ReadmeUrl" : {
1114
+ "shape" : "__string",
1115
+ "locationName" : "readmeUrl"
1116
+ }
1117
+ },
1118
+ "required" : [ "ApplicationId" ]
1119
+ },
1120
+ "UpdateApplicationResponse" : {
1121
+ "type" : "structure",
1122
+ "members" : {
1123
+ "ApplicationId" : {
1124
+ "shape" : "__string",
1125
+ "locationName" : "applicationId"
1126
+ },
1127
+ "Author" : {
1128
+ "shape" : "__string",
1129
+ "locationName" : "author"
1130
+ },
1131
+ "CreationTime" : {
1132
+ "shape" : "__string",
1133
+ "locationName" : "creationTime"
1134
+ },
1135
+ "Description" : {
1136
+ "shape" : "__string",
1137
+ "locationName" : "description"
1138
+ },
1139
+ "Labels" : {
1140
+ "shape" : "ListOf__string",
1141
+ "locationName" : "labels"
1142
+ },
1143
+ "LicenseUrl" : {
1144
+ "shape" : "__string",
1145
+ "locationName" : "licenseUrl"
1146
+ },
1147
+ "Name" : {
1148
+ "shape" : "__string",
1149
+ "locationName" : "name"
1150
+ },
1151
+ "ReadmeUrl" : {
1152
+ "shape" : "__string",
1153
+ "locationName" : "readmeUrl"
1154
+ },
1155
+ "SpdxLicenseId" : {
1156
+ "shape" : "__string",
1157
+ "locationName" : "spdxLicenseId"
1158
+ },
1159
+ "Version" : {
1160
+ "shape" : "Version",
1161
+ "locationName" : "version"
1162
+ }
1163
+ }
1164
+ },
1165
+ "Version" : {
1166
+ "type" : "structure",
1167
+ "members" : {
1168
+ "ApplicationId" : {
1169
+ "shape" : "__string",
1170
+ "locationName" : "applicationId"
1171
+ },
1172
+ "CreationTime" : {
1173
+ "shape" : "__string",
1174
+ "locationName" : "creationTime"
1175
+ },
1176
+ "ParameterDefinitions" : {
1177
+ "shape" : "ListOfParameterDefinition",
1178
+ "locationName" : "parameterDefinitions"
1179
+ },
1180
+ "SemanticVersion" : {
1181
+ "shape" : "__string",
1182
+ "locationName" : "semanticVersion"
1183
+ },
1184
+ "SourceCodeUrl" : {
1185
+ "shape" : "__string",
1186
+ "locationName" : "sourceCodeUrl"
1187
+ },
1188
+ "TemplateUrl" : {
1189
+ "shape" : "__string",
1190
+ "locationName" : "templateUrl"
1191
+ }
1192
+ }
1193
+ },
1194
+ "VersionSummary" : {
1195
+ "type" : "structure",
1196
+ "members" : {
1197
+ "ApplicationId" : {
1198
+ "shape" : "__string",
1199
+ "locationName" : "applicationId"
1200
+ },
1201
+ "CreationTime" : {
1202
+ "shape" : "__string",
1203
+ "locationName" : "creationTime"
1204
+ },
1205
+ "SemanticVersion" : {
1206
+ "shape" : "__string",
1207
+ "locationName" : "semanticVersion"
1208
+ },
1209
+ "SourceCodeUrl" : {
1210
+ "shape" : "__string",
1211
+ "locationName" : "sourceCodeUrl"
1212
+ }
1213
+ }
1214
+ },
1215
+ "__boolean" : {
1216
+ "type" : "boolean"
1217
+ },
1218
+ "__double" : {
1219
+ "type" : "double"
1220
+ },
1221
+ "__integer" : {
1222
+ "type" : "integer"
1223
+ },
1224
+ "__string" : {
1225
+ "type" : "string"
1226
+ },
1227
+ "__timestamp" : {
1228
+ "type" : "timestamp"
1229
+ }
1230
+ },
1231
+ "authorizers" : {
1232
+ "authorization_strategy" : {
1233
+ "name" : "authorization_strategy",
1234
+ "type" : "provided",
1235
+ "placement" : {
1236
+ "location" : "header",
1237
+ "name" : "Authorization"
1238
+ }
1239
+ }
1240
+ }
1241
+ }