aws-sdk-core 2.0.7 → 2.0.8

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: cc9d50c469ee4a720316c504f6f65df7b2043a05
4
- data.tar.gz: 38d4c638d42667fed90475ae6016692d9175241d
3
+ metadata.gz: 74a3e47ac2e5dfa7d8e5acc619eeb1e8ce629ac0
4
+ data.tar.gz: 9ddda1f50772726420b3d627c5a6e24bdb7f9826
5
5
  SHA512:
6
- metadata.gz: 13f971dd509eff9e36f9233e0201a06febfdcd326a101453fb5290d6fb57f1d07cc4db5fa8df7a49983e13028f25b2150bf7e4a23b0e4082f019d6eed0faab4e
7
- data.tar.gz: e1f6ef247d39725947b303633e8e5ccf24503b0307c174c6a82194cd44a42412906404495ed21fdf68c8d070bfdea2540bf65e3092a13a35984e208f07434c01
6
+ metadata.gz: 341e067a0edfb8bd8f282f30cb51171792f0ee79f038a829adf9cc2f6aa58372337c41e796b59f75a626d25d0ca82af60083613687dd12bd7895382bc205c2b6
7
+ data.tar.gz: ce68ced01ecb160d495c16f6e92facc189d2f51bf6fe9b2bc689064bca3d0d3fd40ddfe800416146e78cec93e39726dda7bb47ea3494ff38e0bb535494526161
@@ -149,6 +149,18 @@
149
149
  "resultWrapper":"GetTemplateResult"
150
150
  }
151
151
  },
152
+ "GetTemplateSummary":{
153
+ "name":"GetTemplateSummary",
154
+ "http":{
155
+ "method":"POST",
156
+ "requestUri":"/"
157
+ },
158
+ "input":{"shape":"GetTemplateSummaryInput"},
159
+ "output":{
160
+ "shape":"GetTemplateSummaryOutput",
161
+ "resultWrapper":"GetTemplateSummaryResult"
162
+ }
163
+ },
152
164
  "ListStackResources":{
153
165
  "name":"ListStackResources",
154
166
  "http":{
@@ -181,6 +193,14 @@
181
193
  },
182
194
  "input":{"shape":"SetStackPolicyInput"}
183
195
  },
196
+ "SignalResource":{
197
+ "name":"SignalResource",
198
+ "http":{
199
+ "method":"POST",
200
+ "requestUri":"/"
201
+ },
202
+ "input":{"shape":"SignalResourceInput"}
203
+ },
184
204
  "UpdateStack":{
185
205
  "name":"UpdateStack",
186
206
  "http":{
@@ -380,6 +400,24 @@
380
400
  "TemplateBody":{"shape":"TemplateBody"}
381
401
  }
382
402
  },
403
+ "GetTemplateSummaryInput":{
404
+ "type":"structure",
405
+ "members":{
406
+ "TemplateBody":{"shape":"TemplateBody"},
407
+ "TemplateURL":{"shape":"TemplateURL"},
408
+ "StackName":{"shape":"StackNameOrId"}
409
+ }
410
+ },
411
+ "GetTemplateSummaryOutput":{
412
+ "type":"structure",
413
+ "members":{
414
+ "Parameters":{"shape":"ParameterDeclarations"},
415
+ "Description":{"shape":"Description"},
416
+ "Capabilities":{"shape":"Capabilities"},
417
+ "CapabilitiesReason":{"shape":"CapabilitiesReason"},
418
+ "Version":{"shape":"Version"}
419
+ }
420
+ },
383
421
  "InsufficientCapabilitiesException":{
384
422
  "type":"structure",
385
423
  "members":{
@@ -476,7 +514,22 @@
476
514
  "UsePreviousValue":{"shape":"UsePreviousValue"}
477
515
  }
478
516
  },
517
+ "ParameterDeclaration":{
518
+ "type":"structure",
519
+ "members":{
520
+ "ParameterKey":{"shape":"ParameterKey"},
521
+ "DefaultValue":{"shape":"ParameterValue"},
522
+ "ParameterType":{"shape":"ParameterType"},
523
+ "NoEcho":{"shape":"NoEcho"},
524
+ "Description":{"shape":"Description"}
525
+ }
526
+ },
527
+ "ParameterDeclarations":{
528
+ "type":"list",
529
+ "member":{"shape":"ParameterDeclaration"}
530
+ },
479
531
  "ParameterKey":{"type":"string"},
532
+ "ParameterType":{"type":"string"},
480
533
  "ParameterValue":{"type":"string"},
481
534
  "Parameters":{
482
535
  "type":"list",
@@ -484,6 +537,18 @@
484
537
  },
485
538
  "PhysicalResourceId":{"type":"string"},
486
539
  "ResourceProperties":{"type":"string"},
540
+ "ResourceSignalStatus":{
541
+ "type":"string",
542
+ "enum":[
543
+ "SUCCESS",
544
+ "FAILURE"
545
+ ]
546
+ },
547
+ "ResourceSignalUniqueId":{
548
+ "type":"string",
549
+ "min":1,
550
+ "max":64
551
+ },
487
552
  "ResourceStatus":{
488
553
  "type":"string",
489
554
  "enum":[
@@ -493,6 +558,7 @@
493
558
  "DELETE_IN_PROGRESS",
494
559
  "DELETE_FAILED",
495
560
  "DELETE_COMPLETE",
561
+ "DELETE_SKIPPED",
496
562
  "UPDATE_IN_PROGRESS",
497
563
  "UPDATE_FAILED",
498
564
  "UPDATE_COMPLETE"
@@ -509,6 +575,21 @@
509
575
  "StackPolicyURL":{"shape":"StackPolicyURL"}
510
576
  }
511
577
  },
578
+ "SignalResourceInput":{
579
+ "type":"structure",
580
+ "required":[
581
+ "StackName",
582
+ "LogicalResourceId",
583
+ "UniqueId",
584
+ "Status"
585
+ ],
586
+ "members":{
587
+ "StackName":{"shape":"StackNameOrId"},
588
+ "LogicalResourceId":{"shape":"LogicalResourceId"},
589
+ "UniqueId":{"shape":"ResourceSignalUniqueId"},
590
+ "Status":{"shape":"ResourceSignalStatus"}
591
+ }
592
+ },
512
593
  "Stack":{
513
594
  "type":"structure",
514
595
  "required":[
@@ -560,6 +641,11 @@
560
641
  },
561
642
  "StackId":{"type":"string"},
562
643
  "StackName":{"type":"string"},
644
+ "StackNameOrId":{
645
+ "type":"string",
646
+ "min":1,
647
+ "pattern":"([a-zA-Z][-a-zA-Z0-9]*)|(arn:\\b(aws|aws-us-gov|aws-cn)\\b:[-a-zA-Z0-9:/._+]*)"
648
+ },
563
649
  "StackPolicyBody":{
564
650
  "type":"string",
565
651
  "min":1,
@@ -780,6 +866,7 @@
780
866
  "Capabilities":{"shape":"Capabilities"},
781
867
  "CapabilitiesReason":{"shape":"CapabilitiesReason"}
782
868
  }
783
- }
869
+ },
870
+ "Version":{"type":"string"}
784
871
  }
785
872
  }
@@ -99,6 +99,33 @@
99
99
  "senderFault":true
100
100
  },
101
101
  "exception":true
102
+ },
103
+ {
104
+ "shape":"InvalidCloudWatchLogsLogGroupArnException",
105
+ "error":{
106
+ "code":"InvalidCloudWatchLogsLogGroupArn",
107
+ "httpStatusCode":400,
108
+ "senderFault":true
109
+ },
110
+ "exception":true
111
+ },
112
+ {
113
+ "shape":"InvalidCloudWatchLogsRoleArnException",
114
+ "error":{
115
+ "code":"InvalidCloudWatchLogsRoleArn",
116
+ "httpStatusCode":400,
117
+ "senderFault":true
118
+ },
119
+ "exception":true
120
+ },
121
+ {
122
+ "shape":"CloudWatchLogsDeliveryUnavailableException",
123
+ "error":{
124
+ "code":"CloudWatchLogsDeliveryUnavailable",
125
+ "httpStatusCode":400,
126
+ "senderFault":true
127
+ },
128
+ "exception":true
102
129
  }
103
130
  ]
104
131
  },
@@ -307,12 +334,50 @@
307
334
  "senderFault":true
308
335
  },
309
336
  "exception":true
337
+ },
338
+ {
339
+ "shape":"InvalidCloudWatchLogsLogGroupArnException",
340
+ "error":{
341
+ "code":"InvalidCloudWatchLogsLogGroupArn",
342
+ "httpStatusCode":400,
343
+ "senderFault":true
344
+ },
345
+ "exception":true
346
+ },
347
+ {
348
+ "shape":"InvalidCloudWatchLogsRoleArnException",
349
+ "error":{
350
+ "code":"InvalidCloudWatchLogsRoleArn",
351
+ "httpStatusCode":400,
352
+ "senderFault":true
353
+ },
354
+ "exception":true
355
+ },
356
+ {
357
+ "shape":"CloudWatchLogsDeliveryUnavailableException",
358
+ "error":{
359
+ "code":"CloudWatchLogsDeliveryUnavailable",
360
+ "httpStatusCode":400,
361
+ "senderFault":true
362
+ },
363
+ "exception":true
310
364
  }
311
365
  ]
312
366
  }
313
367
  },
314
368
  "shapes":{
315
369
  "Boolean":{"type":"boolean"},
370
+ "CloudWatchLogsDeliveryUnavailableException":{
371
+ "type":"structure",
372
+ "members":{
373
+ },
374
+ "error":{
375
+ "code":"CloudWatchLogsDeliveryUnavailable",
376
+ "httpStatusCode":400,
377
+ "senderFault":true
378
+ },
379
+ "exception":true
380
+ },
316
381
  "CreateTrailRequest":{
317
382
  "type":"structure",
318
383
  "required":[
@@ -324,7 +389,9 @@
324
389
  "S3BucketName":{"shape":"String"},
325
390
  "S3KeyPrefix":{"shape":"String"},
326
391
  "SnsTopicName":{"shape":"String"},
327
- "IncludeGlobalServiceEvents":{"shape":"Boolean"}
392
+ "IncludeGlobalServiceEvents":{"shape":"Boolean"},
393
+ "CloudWatchLogsLogGroupArn":{"shape":"String"},
394
+ "CloudWatchLogsRoleArn":{"shape":"String"}
328
395
  }
329
396
  },
330
397
  "CreateTrailResponse":{
@@ -334,7 +401,9 @@
334
401
  "S3BucketName":{"shape":"String"},
335
402
  "S3KeyPrefix":{"shape":"String"},
336
403
  "SnsTopicName":{"shape":"String"},
337
- "IncludeGlobalServiceEvents":{"shape":"Boolean"}
404
+ "IncludeGlobalServiceEvents":{"shape":"Boolean"},
405
+ "CloudWatchLogsLogGroupArn":{"shape":"String"},
406
+ "CloudWatchLogsRoleArn":{"shape":"String"}
338
407
  }
339
408
  },
340
409
  "Date":{"type":"timestamp"},
@@ -378,7 +447,9 @@
378
447
  "LatestDeliveryTime":{"shape":"Date"},
379
448
  "LatestNotificationTime":{"shape":"Date"},
380
449
  "StartLoggingTime":{"shape":"Date"},
381
- "StopLoggingTime":{"shape":"Date"}
450
+ "StopLoggingTime":{"shape":"Date"},
451
+ "LatestCloudWatchLogsDeliveryError":{"shape":"String"},
452
+ "LatestCloudWatchLogsDeliveryTime":{"shape":"Date"}
382
453
  }
383
454
  },
384
455
  "InsufficientS3BucketPolicyException":{
@@ -403,6 +474,28 @@
403
474
  },
404
475
  "exception":true
405
476
  },
477
+ "InvalidCloudWatchLogsLogGroupArnException":{
478
+ "type":"structure",
479
+ "members":{
480
+ },
481
+ "error":{
482
+ "code":"InvalidCloudWatchLogsLogGroupArn",
483
+ "httpStatusCode":400,
484
+ "senderFault":true
485
+ },
486
+ "exception":true
487
+ },
488
+ "InvalidCloudWatchLogsRoleArnException":{
489
+ "type":"structure",
490
+ "members":{
491
+ },
492
+ "error":{
493
+ "code":"InvalidCloudWatchLogsRoleArn",
494
+ "httpStatusCode":400,
495
+ "senderFault":true
496
+ },
497
+ "exception":true
498
+ },
406
499
  "InvalidS3BucketNameException":{
407
500
  "type":"structure",
408
501
  "members":{
@@ -501,7 +594,9 @@
501
594
  "S3BucketName":{"shape":"String"},
502
595
  "S3KeyPrefix":{"shape":"String"},
503
596
  "SnsTopicName":{"shape":"String"},
504
- "IncludeGlobalServiceEvents":{"shape":"Boolean"}
597
+ "IncludeGlobalServiceEvents":{"shape":"Boolean"},
598
+ "CloudWatchLogsLogGroupArn":{"shape":"String"},
599
+ "CloudWatchLogsRoleArn":{"shape":"String"}
505
600
  }
506
601
  },
507
602
  "TrailAlreadyExistsException":{
@@ -542,7 +637,9 @@
542
637
  "S3BucketName":{"shape":"String"},
543
638
  "S3KeyPrefix":{"shape":"String"},
544
639
  "SnsTopicName":{"shape":"String"},
545
- "IncludeGlobalServiceEvents":{"shape":"Boolean"}
640
+ "IncludeGlobalServiceEvents":{"shape":"Boolean"},
641
+ "CloudWatchLogsLogGroupArn":{"shape":"String"},
642
+ "CloudWatchLogsRoleArn":{"shape":"String"}
546
643
  }
547
644
  },
548
645
  "UpdateTrailResponse":{
@@ -552,7 +649,9 @@
552
649
  "S3BucketName":{"shape":"String"},
553
650
  "S3KeyPrefix":{"shape":"String"},
554
651
  "SnsTopicName":{"shape":"String"},
555
- "IncludeGlobalServiceEvents":{"shape":"Boolean"}
652
+ "IncludeGlobalServiceEvents":{"shape":"Boolean"},
653
+ "CloudWatchLogsLogGroupArn":{"shape":"String"},
654
+ "CloudWatchLogsRoleArn":{"shape":"String"}
556
655
  }
557
656
  }
558
657
  }
@@ -0,0 +1,1829 @@
1
+ {
2
+ "metadata":{
3
+ "apiVersion":"2014-10-06",
4
+ "endpointPrefix":"codedeploy",
5
+ "jsonVersion":"1.1",
6
+ "serviceAbbreviation":"CodeDeploy",
7
+ "serviceFullName":"AWS CodeDeploy",
8
+ "signatureVersion":"v4",
9
+ "targetPrefix":"CodeDeploy_20141006",
10
+ "timestampFormat":"unixTimestamp",
11
+ "protocol":"json"
12
+ },
13
+ "operations":{
14
+ "BatchGetApplications":{
15
+ "name":"BatchGetApplications",
16
+ "http":{
17
+ "method":"POST",
18
+ "requestUri":"/"
19
+ },
20
+ "input":{"shape":"BatchGetApplicationsInput"},
21
+ "output":{"shape":"BatchGetApplicationsOutput"},
22
+ "errors":[
23
+ {
24
+ "shape":"ApplicationNameRequiredException",
25
+ "exception":true
26
+ },
27
+ {
28
+ "shape":"InvalidApplicationNameException",
29
+ "exception":true
30
+ },
31
+ {
32
+ "shape":"ApplicationDoesNotExistException",
33
+ "exception":true
34
+ }
35
+ ]
36
+ },
37
+ "BatchGetDeployments":{
38
+ "name":"BatchGetDeployments",
39
+ "http":{
40
+ "method":"POST",
41
+ "requestUri":"/"
42
+ },
43
+ "input":{"shape":"BatchGetDeploymentsInput"},
44
+ "output":{"shape":"BatchGetDeploymentsOutput"},
45
+ "errors":[
46
+ {
47
+ "shape":"DeploymentIdRequiredException",
48
+ "exception":true
49
+ },
50
+ {
51
+ "shape":"InvalidDeploymentIdException",
52
+ "exception":true
53
+ }
54
+ ]
55
+ },
56
+ "CreateApplication":{
57
+ "name":"CreateApplication",
58
+ "http":{
59
+ "method":"POST",
60
+ "requestUri":"/"
61
+ },
62
+ "input":{"shape":"CreateApplicationInput"},
63
+ "output":{"shape":"CreateApplicationOutput"},
64
+ "errors":[
65
+ {
66
+ "shape":"ApplicationNameRequiredException",
67
+ "exception":true
68
+ },
69
+ {
70
+ "shape":"InvalidApplicationNameException",
71
+ "exception":true
72
+ },
73
+ {
74
+ "shape":"ApplicationAlreadyExistsException",
75
+ "exception":true
76
+ },
77
+ {
78
+ "shape":"ApplicationLimitExceededException",
79
+ "exception":true
80
+ }
81
+ ]
82
+ },
83
+ "CreateDeployment":{
84
+ "name":"CreateDeployment",
85
+ "http":{
86
+ "method":"POST",
87
+ "requestUri":"/"
88
+ },
89
+ "input":{"shape":"CreateDeploymentInput"},
90
+ "output":{"shape":"CreateDeploymentOutput"},
91
+ "errors":[
92
+ {
93
+ "shape":"ApplicationNameRequiredException",
94
+ "exception":true
95
+ },
96
+ {
97
+ "shape":"InvalidApplicationNameException",
98
+ "exception":true
99
+ },
100
+ {
101
+ "shape":"ApplicationDoesNotExistException",
102
+ "exception":true
103
+ },
104
+ {
105
+ "shape":"DeploymentGroupNameRequiredException",
106
+ "exception":true
107
+ },
108
+ {
109
+ "shape":"InvalidDeploymentGroupNameException",
110
+ "exception":true
111
+ },
112
+ {
113
+ "shape":"DeploymentGroupDoesNotExistException",
114
+ "exception":true
115
+ },
116
+ {
117
+ "shape":"RevisionRequiredException",
118
+ "exception":true
119
+ },
120
+ {
121
+ "shape":"InvalidRevisionException",
122
+ "exception":true
123
+ },
124
+ {
125
+ "shape":"InvalidDeploymentConfigNameException",
126
+ "exception":true
127
+ },
128
+ {
129
+ "shape":"DeploymentConfigDoesNotExistException",
130
+ "exception":true
131
+ },
132
+ {
133
+ "shape":"DescriptionTooLongException",
134
+ "exception":true
135
+ },
136
+ {
137
+ "shape":"DeploymentLimitExceededException",
138
+ "exception":true
139
+ }
140
+ ]
141
+ },
142
+ "CreateDeploymentConfig":{
143
+ "name":"CreateDeploymentConfig",
144
+ "http":{
145
+ "method":"POST",
146
+ "requestUri":"/"
147
+ },
148
+ "input":{"shape":"CreateDeploymentConfigInput"},
149
+ "output":{"shape":"CreateDeploymentConfigOutput"},
150
+ "errors":[
151
+ {
152
+ "shape":"InvalidDeploymentConfigNameException",
153
+ "exception":true
154
+ },
155
+ {
156
+ "shape":"DeploymentConfigNameRequiredException",
157
+ "exception":true
158
+ },
159
+ {
160
+ "shape":"DeploymentConfigAlreadyExistsException",
161
+ "exception":true
162
+ },
163
+ {
164
+ "shape":"InvalidMinimumHealthyHostValueException",
165
+ "exception":true
166
+ },
167
+ {
168
+ "shape":"DeploymentConfigLimitExceededException",
169
+ "exception":true
170
+ }
171
+ ]
172
+ },
173
+ "CreateDeploymentGroup":{
174
+ "name":"CreateDeploymentGroup",
175
+ "http":{
176
+ "method":"POST",
177
+ "requestUri":"/"
178
+ },
179
+ "input":{"shape":"CreateDeploymentGroupInput"},
180
+ "output":{"shape":"CreateDeploymentGroupOutput"},
181
+ "errors":[
182
+ {
183
+ "shape":"ApplicationNameRequiredException",
184
+ "exception":true
185
+ },
186
+ {
187
+ "shape":"InvalidApplicationNameException",
188
+ "exception":true
189
+ },
190
+ {
191
+ "shape":"ApplicationDoesNotExistException",
192
+ "exception":true
193
+ },
194
+ {
195
+ "shape":"DeploymentGroupNameRequiredException",
196
+ "exception":true
197
+ },
198
+ {
199
+ "shape":"InvalidDeploymentGroupNameException",
200
+ "exception":true
201
+ },
202
+ {
203
+ "shape":"DeploymentGroupAlreadyExistsException",
204
+ "exception":true
205
+ },
206
+ {
207
+ "shape":"InvalidEC2TagException",
208
+ "exception":true
209
+ },
210
+ {
211
+ "shape":"InvalidAutoScalingGroupException",
212
+ "exception":true
213
+ },
214
+ {
215
+ "shape":"InvalidDeploymentConfigNameException",
216
+ "exception":true
217
+ },
218
+ {
219
+ "shape":"DeploymentConfigDoesNotExistException",
220
+ "exception":true
221
+ },
222
+ {
223
+ "shape":"RoleRequiredException",
224
+ "exception":true
225
+ },
226
+ {
227
+ "shape":"InvalidRoleException",
228
+ "exception":true
229
+ },
230
+ {
231
+ "shape":"DeploymentGroupLimitExceededException",
232
+ "exception":true
233
+ }
234
+ ]
235
+ },
236
+ "DeleteApplication":{
237
+ "name":"DeleteApplication",
238
+ "http":{
239
+ "method":"POST",
240
+ "requestUri":"/"
241
+ },
242
+ "input":{"shape":"DeleteApplicationInput"},
243
+ "errors":[
244
+ {
245
+ "shape":"ApplicationNameRequiredException",
246
+ "exception":true
247
+ },
248
+ {
249
+ "shape":"InvalidApplicationNameException",
250
+ "exception":true
251
+ }
252
+ ]
253
+ },
254
+ "DeleteDeploymentConfig":{
255
+ "name":"DeleteDeploymentConfig",
256
+ "http":{
257
+ "method":"POST",
258
+ "requestUri":"/"
259
+ },
260
+ "input":{"shape":"DeleteDeploymentConfigInput"},
261
+ "errors":[
262
+ {
263
+ "shape":"InvalidDeploymentConfigNameException",
264
+ "exception":true
265
+ },
266
+ {
267
+ "shape":"DeploymentConfigNameRequiredException",
268
+ "exception":true
269
+ },
270
+ {
271
+ "shape":"DeploymentConfigInUseException",
272
+ "exception":true
273
+ },
274
+ {
275
+ "shape":"InvalidOperationException",
276
+ "exception":true
277
+ }
278
+ ]
279
+ },
280
+ "DeleteDeploymentGroup":{
281
+ "name":"DeleteDeploymentGroup",
282
+ "http":{
283
+ "method":"POST",
284
+ "requestUri":"/"
285
+ },
286
+ "input":{"shape":"DeleteDeploymentGroupInput"},
287
+ "output":{"shape":"DeleteDeploymentGroupOutput"},
288
+ "errors":[
289
+ {
290
+ "shape":"ApplicationNameRequiredException",
291
+ "exception":true
292
+ },
293
+ {
294
+ "shape":"InvalidApplicationNameException",
295
+ "exception":true
296
+ },
297
+ {
298
+ "shape":"DeploymentGroupNameRequiredException",
299
+ "exception":true
300
+ },
301
+ {
302
+ "shape":"InvalidDeploymentGroupNameException",
303
+ "exception":true
304
+ },
305
+ {
306
+ "shape":"InvalidRoleException",
307
+ "exception":true
308
+ }
309
+ ]
310
+ },
311
+ "GetApplication":{
312
+ "name":"GetApplication",
313
+ "http":{
314
+ "method":"POST",
315
+ "requestUri":"/"
316
+ },
317
+ "input":{"shape":"GetApplicationInput"},
318
+ "output":{"shape":"GetApplicationOutput"},
319
+ "errors":[
320
+ {
321
+ "shape":"ApplicationNameRequiredException",
322
+ "exception":true
323
+ },
324
+ {
325
+ "shape":"InvalidApplicationNameException",
326
+ "exception":true
327
+ },
328
+ {
329
+ "shape":"ApplicationDoesNotExistException",
330
+ "exception":true
331
+ }
332
+ ]
333
+ },
334
+ "GetApplicationRevision":{
335
+ "name":"GetApplicationRevision",
336
+ "http":{
337
+ "method":"POST",
338
+ "requestUri":"/"
339
+ },
340
+ "input":{"shape":"GetApplicationRevisionInput"},
341
+ "output":{"shape":"GetApplicationRevisionOutput"},
342
+ "errors":[
343
+ {
344
+ "shape":"ApplicationDoesNotExistException",
345
+ "exception":true
346
+ },
347
+ {
348
+ "shape":"ApplicationNameRequiredException",
349
+ "exception":true
350
+ },
351
+ {
352
+ "shape":"InvalidApplicationNameException",
353
+ "exception":true
354
+ },
355
+ {
356
+ "shape":"RevisionDoesNotExistException",
357
+ "exception":true
358
+ },
359
+ {
360
+ "shape":"RevisionRequiredException",
361
+ "exception":true
362
+ },
363
+ {
364
+ "shape":"InvalidRevisionException",
365
+ "exception":true
366
+ }
367
+ ]
368
+ },
369
+ "GetDeployment":{
370
+ "name":"GetDeployment",
371
+ "http":{
372
+ "method":"POST",
373
+ "requestUri":"/"
374
+ },
375
+ "input":{"shape":"GetDeploymentInput"},
376
+ "output":{"shape":"GetDeploymentOutput"},
377
+ "errors":[
378
+ {
379
+ "shape":"DeploymentIdRequiredException",
380
+ "exception":true
381
+ },
382
+ {
383
+ "shape":"InvalidDeploymentIdException",
384
+ "exception":true
385
+ },
386
+ {
387
+ "shape":"DeploymentDoesNotExistException",
388
+ "exception":true
389
+ }
390
+ ]
391
+ },
392
+ "GetDeploymentConfig":{
393
+ "name":"GetDeploymentConfig",
394
+ "http":{
395
+ "method":"POST",
396
+ "requestUri":"/"
397
+ },
398
+ "input":{"shape":"GetDeploymentConfigInput"},
399
+ "output":{"shape":"GetDeploymentConfigOutput"},
400
+ "errors":[
401
+ {
402
+ "shape":"InvalidDeploymentConfigNameException",
403
+ "exception":true
404
+ },
405
+ {
406
+ "shape":"DeploymentConfigNameRequiredException",
407
+ "exception":true
408
+ },
409
+ {
410
+ "shape":"DeploymentConfigDoesNotExistException",
411
+ "exception":true
412
+ }
413
+ ]
414
+ },
415
+ "GetDeploymentGroup":{
416
+ "name":"GetDeploymentGroup",
417
+ "http":{
418
+ "method":"POST",
419
+ "requestUri":"/"
420
+ },
421
+ "input":{"shape":"GetDeploymentGroupInput"},
422
+ "output":{"shape":"GetDeploymentGroupOutput"},
423
+ "errors":[
424
+ {
425
+ "shape":"ApplicationNameRequiredException",
426
+ "exception":true
427
+ },
428
+ {
429
+ "shape":"InvalidApplicationNameException",
430
+ "exception":true
431
+ },
432
+ {
433
+ "shape":"ApplicationDoesNotExistException",
434
+ "exception":true
435
+ },
436
+ {
437
+ "shape":"DeploymentGroupNameRequiredException",
438
+ "exception":true
439
+ },
440
+ {
441
+ "shape":"InvalidDeploymentGroupNameException",
442
+ "exception":true
443
+ },
444
+ {
445
+ "shape":"DeploymentGroupDoesNotExistException",
446
+ "exception":true
447
+ }
448
+ ]
449
+ },
450
+ "GetDeploymentInstance":{
451
+ "name":"GetDeploymentInstance",
452
+ "http":{
453
+ "method":"POST",
454
+ "requestUri":"/"
455
+ },
456
+ "input":{"shape":"GetDeploymentInstanceInput"},
457
+ "output":{"shape":"GetDeploymentInstanceOutput"},
458
+ "errors":[
459
+ {
460
+ "shape":"DeploymentIdRequiredException",
461
+ "exception":true
462
+ },
463
+ {
464
+ "shape":"DeploymentDoesNotExistException",
465
+ "exception":true
466
+ },
467
+ {
468
+ "shape":"InstanceIdRequiredException",
469
+ "exception":true
470
+ },
471
+ {
472
+ "shape":"InvalidDeploymentIdException",
473
+ "exception":true
474
+ },
475
+ {
476
+ "shape":"InstanceDoesNotExistException",
477
+ "exception":true
478
+ }
479
+ ]
480
+ },
481
+ "ListApplicationRevisions":{
482
+ "name":"ListApplicationRevisions",
483
+ "http":{
484
+ "method":"POST",
485
+ "requestUri":"/"
486
+ },
487
+ "input":{"shape":"ListApplicationRevisionsInput"},
488
+ "output":{"shape":"ListApplicationRevisionsOutput"},
489
+ "errors":[
490
+ {
491
+ "shape":"ApplicationDoesNotExistException",
492
+ "exception":true
493
+ },
494
+ {
495
+ "shape":"ApplicationNameRequiredException",
496
+ "exception":true
497
+ },
498
+ {
499
+ "shape":"InvalidApplicationNameException",
500
+ "exception":true
501
+ },
502
+ {
503
+ "shape":"InvalidSortByException",
504
+ "exception":true
505
+ },
506
+ {
507
+ "shape":"InvalidSortOrderException",
508
+ "exception":true
509
+ },
510
+ {
511
+ "shape":"InvalidBucketNameFilterException",
512
+ "exception":true
513
+ },
514
+ {
515
+ "shape":"InvalidKeyPrefixFilterException",
516
+ "exception":true
517
+ },
518
+ {
519
+ "shape":"BucketNameFilterRequiredException",
520
+ "exception":true
521
+ },
522
+ {
523
+ "shape":"InvalidDeployedStateFilterException",
524
+ "exception":true
525
+ },
526
+ {
527
+ "shape":"InvalidNextTokenException",
528
+ "exception":true
529
+ }
530
+ ]
531
+ },
532
+ "ListApplications":{
533
+ "name":"ListApplications",
534
+ "http":{
535
+ "method":"POST",
536
+ "requestUri":"/"
537
+ },
538
+ "input":{"shape":"ListApplicationsInput"},
539
+ "output":{"shape":"ListApplicationsOutput"},
540
+ "errors":[
541
+ {
542
+ "shape":"InvalidNextTokenException",
543
+ "exception":true
544
+ }
545
+ ]
546
+ },
547
+ "ListDeploymentConfigs":{
548
+ "name":"ListDeploymentConfigs",
549
+ "http":{
550
+ "method":"POST",
551
+ "requestUri":"/"
552
+ },
553
+ "input":{"shape":"ListDeploymentConfigsInput"},
554
+ "output":{"shape":"ListDeploymentConfigsOutput"},
555
+ "errors":[
556
+ {
557
+ "shape":"InvalidNextTokenException",
558
+ "exception":true
559
+ }
560
+ ]
561
+ },
562
+ "ListDeploymentGroups":{
563
+ "name":"ListDeploymentGroups",
564
+ "http":{
565
+ "method":"POST",
566
+ "requestUri":"/"
567
+ },
568
+ "input":{"shape":"ListDeploymentGroupsInput"},
569
+ "output":{"shape":"ListDeploymentGroupsOutput"},
570
+ "errors":[
571
+ {
572
+ "shape":"ApplicationNameRequiredException",
573
+ "exception":true
574
+ },
575
+ {
576
+ "shape":"InvalidApplicationNameException",
577
+ "exception":true
578
+ },
579
+ {
580
+ "shape":"ApplicationDoesNotExistException",
581
+ "exception":true
582
+ },
583
+ {
584
+ "shape":"InvalidNextTokenException",
585
+ "exception":true
586
+ }
587
+ ]
588
+ },
589
+ "ListDeploymentInstances":{
590
+ "name":"ListDeploymentInstances",
591
+ "http":{
592
+ "method":"POST",
593
+ "requestUri":"/"
594
+ },
595
+ "input":{"shape":"ListDeploymentInstancesInput"},
596
+ "output":{"shape":"ListDeploymentInstancesOutput"},
597
+ "errors":[
598
+ {
599
+ "shape":"DeploymentIdRequiredException",
600
+ "exception":true
601
+ },
602
+ {
603
+ "shape":"DeploymentDoesNotExistException",
604
+ "exception":true
605
+ },
606
+ {
607
+ "shape":"DeploymentNotStartedException",
608
+ "exception":true
609
+ },
610
+ {
611
+ "shape":"InvalidNextTokenException",
612
+ "exception":true
613
+ },
614
+ {
615
+ "shape":"InvalidDeploymentIdException",
616
+ "exception":true
617
+ },
618
+ {
619
+ "shape":"InvalidInstanceStatusException",
620
+ "exception":true
621
+ }
622
+ ]
623
+ },
624
+ "ListDeployments":{
625
+ "name":"ListDeployments",
626
+ "http":{
627
+ "method":"POST",
628
+ "requestUri":"/"
629
+ },
630
+ "input":{"shape":"ListDeploymentsInput"},
631
+ "output":{"shape":"ListDeploymentsOutput"},
632
+ "errors":[
633
+ {
634
+ "shape":"ApplicationNameRequiredException",
635
+ "exception":true
636
+ },
637
+ {
638
+ "shape":"InvalidApplicationNameException",
639
+ "exception":true
640
+ },
641
+ {
642
+ "shape":"ApplicationDoesNotExistException",
643
+ "exception":true
644
+ },
645
+ {
646
+ "shape":"InvalidDeploymentGroupNameException",
647
+ "exception":true
648
+ },
649
+ {
650
+ "shape":"DeploymentGroupDoesNotExistException",
651
+ "exception":true
652
+ },
653
+ {
654
+ "shape":"DeploymentGroupNameRequiredException",
655
+ "exception":true
656
+ },
657
+ {
658
+ "shape":"InvalidTimeRangeException",
659
+ "exception":true
660
+ },
661
+ {
662
+ "shape":"InvalidDeploymentStatusException",
663
+ "exception":true
664
+ },
665
+ {
666
+ "shape":"InvalidNextTokenException",
667
+ "exception":true
668
+ }
669
+ ]
670
+ },
671
+ "RegisterApplicationRevision":{
672
+ "name":"RegisterApplicationRevision",
673
+ "http":{
674
+ "method":"POST",
675
+ "requestUri":"/"
676
+ },
677
+ "input":{"shape":"RegisterApplicationRevisionInput"},
678
+ "errors":[
679
+ {
680
+ "shape":"ApplicationDoesNotExistException",
681
+ "exception":true
682
+ },
683
+ {
684
+ "shape":"ApplicationNameRequiredException",
685
+ "exception":true
686
+ },
687
+ {
688
+ "shape":"InvalidApplicationNameException",
689
+ "exception":true
690
+ },
691
+ {
692
+ "shape":"DescriptionTooLongException",
693
+ "exception":true
694
+ },
695
+ {
696
+ "shape":"RevisionRequiredException",
697
+ "exception":true
698
+ },
699
+ {
700
+ "shape":"InvalidRevisionException",
701
+ "exception":true
702
+ }
703
+ ]
704
+ },
705
+ "StopDeployment":{
706
+ "name":"StopDeployment",
707
+ "http":{
708
+ "method":"POST",
709
+ "requestUri":"/"
710
+ },
711
+ "input":{"shape":"StopDeploymentInput"},
712
+ "output":{"shape":"StopDeploymentOutput"},
713
+ "errors":[
714
+ {
715
+ "shape":"DeploymentIdRequiredException",
716
+ "exception":true
717
+ },
718
+ {
719
+ "shape":"DeploymentDoesNotExistException",
720
+ "exception":true
721
+ },
722
+ {
723
+ "shape":"DeploymentAlreadyCompletedException",
724
+ "exception":true
725
+ },
726
+ {
727
+ "shape":"InvalidDeploymentIdException",
728
+ "exception":true
729
+ }
730
+ ]
731
+ },
732
+ "UpdateApplication":{
733
+ "name":"UpdateApplication",
734
+ "http":{
735
+ "method":"POST",
736
+ "requestUri":"/"
737
+ },
738
+ "input":{"shape":"UpdateApplicationInput"},
739
+ "errors":[
740
+ {
741
+ "shape":"ApplicationNameRequiredException",
742
+ "exception":true
743
+ },
744
+ {
745
+ "shape":"InvalidApplicationNameException",
746
+ "exception":true
747
+ },
748
+ {
749
+ "shape":"ApplicationAlreadyExistsException",
750
+ "exception":true
751
+ },
752
+ {
753
+ "shape":"ApplicationDoesNotExistException",
754
+ "exception":true
755
+ }
756
+ ]
757
+ },
758
+ "UpdateDeploymentGroup":{
759
+ "name":"UpdateDeploymentGroup",
760
+ "http":{
761
+ "method":"POST",
762
+ "requestUri":"/"
763
+ },
764
+ "input":{"shape":"UpdateDeploymentGroupInput"},
765
+ "output":{"shape":"UpdateDeploymentGroupOutput"},
766
+ "errors":[
767
+ {
768
+ "shape":"ApplicationNameRequiredException",
769
+ "exception":true
770
+ },
771
+ {
772
+ "shape":"InvalidApplicationNameException",
773
+ "exception":true
774
+ },
775
+ {
776
+ "shape":"ApplicationDoesNotExistException",
777
+ "exception":true
778
+ },
779
+ {
780
+ "shape":"InvalidDeploymentGroupNameException",
781
+ "exception":true
782
+ },
783
+ {
784
+ "shape":"DeploymentGroupAlreadyExistsException",
785
+ "exception":true
786
+ },
787
+ {
788
+ "shape":"DeploymentGroupNameRequiredException",
789
+ "exception":true
790
+ },
791
+ {
792
+ "shape":"InvalidEC2TagException",
793
+ "exception":true
794
+ },
795
+ {
796
+ "shape":"InvalidAutoScalingGroupException",
797
+ "exception":true
798
+ },
799
+ {
800
+ "shape":"InvalidDeploymentConfigNameException",
801
+ "exception":true
802
+ },
803
+ {
804
+ "shape":"DeploymentConfigDoesNotExistException",
805
+ "exception":true
806
+ },
807
+ {
808
+ "shape":"InvalidRoleException",
809
+ "exception":true
810
+ }
811
+ ]
812
+ }
813
+ },
814
+ "shapes":{
815
+ "ApplicationAlreadyExistsException":{
816
+ "type":"structure",
817
+ "members":{
818
+ },
819
+ "exception":true
820
+ },
821
+ "ApplicationDoesNotExistException":{
822
+ "type":"structure",
823
+ "members":{
824
+ },
825
+ "exception":true
826
+ },
827
+ "ApplicationId":{"type":"string"},
828
+ "ApplicationInfo":{
829
+ "type":"structure",
830
+ "members":{
831
+ "applicationId":{"shape":"ApplicationId"},
832
+ "applicationName":{"shape":"ApplicationName"},
833
+ "createTime":{"shape":"Timestamp"},
834
+ "linkedToGitHub":{"shape":"Boolean"}
835
+ }
836
+ },
837
+ "ApplicationLimitExceededException":{
838
+ "type":"structure",
839
+ "members":{
840
+ },
841
+ "exception":true
842
+ },
843
+ "ApplicationName":{
844
+ "type":"string",
845
+ "min":1,
846
+ "max":100
847
+ },
848
+ "ApplicationNameRequiredException":{
849
+ "type":"structure",
850
+ "members":{
851
+ },
852
+ "exception":true
853
+ },
854
+ "ApplicationRevisionSortBy":{
855
+ "type":"string",
856
+ "enum":[
857
+ "registerTime",
858
+ "firstUsedTime",
859
+ "lastUsedTime"
860
+ ]
861
+ },
862
+ "ApplicationsInfoList":{
863
+ "type":"list",
864
+ "member":{"shape":"ApplicationInfo"}
865
+ },
866
+ "ApplicationsList":{
867
+ "type":"list",
868
+ "member":{"shape":"ApplicationName"}
869
+ },
870
+ "AutoScalingGroup":{
871
+ "type":"structure",
872
+ "members":{
873
+ "name":{"shape":"AutoScalingGroupName"},
874
+ "hook":{"shape":"AutoScalingGroupHook"}
875
+ }
876
+ },
877
+ "AutoScalingGroupHook":{"type":"string"},
878
+ "AutoScalingGroupList":{
879
+ "type":"list",
880
+ "member":{"shape":"AutoScalingGroup"}
881
+ },
882
+ "AutoScalingGroupName":{"type":"string"},
883
+ "AutoScalingGroupNameList":{
884
+ "type":"list",
885
+ "member":{"shape":"AutoScalingGroupName"}
886
+ },
887
+ "BatchGetApplicationsInput":{
888
+ "type":"structure",
889
+ "members":{
890
+ "applicationNames":{"shape":"ApplicationsList"}
891
+ }
892
+ },
893
+ "BatchGetApplicationsOutput":{
894
+ "type":"structure",
895
+ "members":{
896
+ "applicationsInfo":{"shape":"ApplicationsInfoList"}
897
+ }
898
+ },
899
+ "BatchGetDeploymentsInput":{
900
+ "type":"structure",
901
+ "members":{
902
+ "deploymentIds":{"shape":"DeploymentsList"}
903
+ }
904
+ },
905
+ "BatchGetDeploymentsOutput":{
906
+ "type":"structure",
907
+ "members":{
908
+ "deploymentsInfo":{"shape":"DeploymentsInfoList"}
909
+ }
910
+ },
911
+ "Boolean":{"type":"boolean"},
912
+ "BucketNameFilterRequiredException":{
913
+ "type":"structure",
914
+ "members":{
915
+ },
916
+ "exception":true
917
+ },
918
+ "BundleType":{
919
+ "type":"string",
920
+ "enum":[
921
+ "tar",
922
+ "tgz",
923
+ "zip"
924
+ ]
925
+ },
926
+ "CommitId":{"type":"string"},
927
+ "CreateApplicationInput":{
928
+ "type":"structure",
929
+ "required":["applicationName"],
930
+ "members":{
931
+ "applicationName":{"shape":"ApplicationName"}
932
+ }
933
+ },
934
+ "CreateApplicationOutput":{
935
+ "type":"structure",
936
+ "members":{
937
+ "applicationId":{"shape":"ApplicationId"}
938
+ }
939
+ },
940
+ "CreateDeploymentConfigInput":{
941
+ "type":"structure",
942
+ "required":["deploymentConfigName"],
943
+ "members":{
944
+ "deploymentConfigName":{"shape":"DeploymentConfigName"},
945
+ "minimumHealthyHosts":{"shape":"MinimumHealthyHosts"}
946
+ }
947
+ },
948
+ "CreateDeploymentConfigOutput":{
949
+ "type":"structure",
950
+ "members":{
951
+ "deploymentConfigId":{"shape":"DeploymentConfigId"}
952
+ }
953
+ },
954
+ "CreateDeploymentGroupInput":{
955
+ "type":"structure",
956
+ "required":[
957
+ "applicationName",
958
+ "deploymentGroupName"
959
+ ],
960
+ "members":{
961
+ "applicationName":{"shape":"ApplicationName"},
962
+ "deploymentGroupName":{"shape":"DeploymentGroupName"},
963
+ "deploymentConfigName":{"shape":"DeploymentConfigName"},
964
+ "ec2TagFilters":{"shape":"EC2TagFilterList"},
965
+ "autoScalingGroups":{"shape":"AutoScalingGroupNameList"},
966
+ "serviceRoleArn":{"shape":"Role"}
967
+ }
968
+ },
969
+ "CreateDeploymentGroupOutput":{
970
+ "type":"structure",
971
+ "members":{
972
+ "deploymentGroupId":{"shape":"DeploymentGroupId"}
973
+ }
974
+ },
975
+ "CreateDeploymentInput":{
976
+ "type":"structure",
977
+ "required":["applicationName"],
978
+ "members":{
979
+ "applicationName":{"shape":"ApplicationName"},
980
+ "deploymentGroupName":{"shape":"DeploymentGroupName"},
981
+ "revision":{"shape":"RevisionLocation"},
982
+ "deploymentConfigName":{"shape":"DeploymentConfigName"},
983
+ "description":{"shape":"Description"},
984
+ "ignoreApplicationStopFailures":{"shape":"Boolean"}
985
+ }
986
+ },
987
+ "CreateDeploymentOutput":{
988
+ "type":"structure",
989
+ "members":{
990
+ "deploymentId":{"shape":"DeploymentId"}
991
+ }
992
+ },
993
+ "DeleteApplicationInput":{
994
+ "type":"structure",
995
+ "required":["applicationName"],
996
+ "members":{
997
+ "applicationName":{"shape":"ApplicationName"}
998
+ }
999
+ },
1000
+ "DeleteDeploymentConfigInput":{
1001
+ "type":"structure",
1002
+ "required":["deploymentConfigName"],
1003
+ "members":{
1004
+ "deploymentConfigName":{"shape":"DeploymentConfigName"}
1005
+ }
1006
+ },
1007
+ "DeleteDeploymentGroupInput":{
1008
+ "type":"structure",
1009
+ "required":[
1010
+ "applicationName",
1011
+ "deploymentGroupName"
1012
+ ],
1013
+ "members":{
1014
+ "applicationName":{"shape":"ApplicationName"},
1015
+ "deploymentGroupName":{"shape":"DeploymentGroupName"}
1016
+ }
1017
+ },
1018
+ "DeleteDeploymentGroupOutput":{
1019
+ "type":"structure",
1020
+ "members":{
1021
+ "hooksNotCleanedUp":{"shape":"AutoScalingGroupList"}
1022
+ }
1023
+ },
1024
+ "DeploymentAlreadyCompletedException":{
1025
+ "type":"structure",
1026
+ "members":{
1027
+ },
1028
+ "exception":true
1029
+ },
1030
+ "DeploymentConfigAlreadyExistsException":{
1031
+ "type":"structure",
1032
+ "members":{
1033
+ },
1034
+ "exception":true
1035
+ },
1036
+ "DeploymentConfigDoesNotExistException":{
1037
+ "type":"structure",
1038
+ "members":{
1039
+ },
1040
+ "exception":true
1041
+ },
1042
+ "DeploymentConfigId":{"type":"string"},
1043
+ "DeploymentConfigInUseException":{
1044
+ "type":"structure",
1045
+ "members":{
1046
+ },
1047
+ "exception":true
1048
+ },
1049
+ "DeploymentConfigInfo":{
1050
+ "type":"structure",
1051
+ "members":{
1052
+ "deploymentConfigId":{"shape":"DeploymentConfigId"},
1053
+ "deploymentConfigName":{"shape":"DeploymentConfigName"},
1054
+ "minimumHealthyHosts":{"shape":"MinimumHealthyHosts"},
1055
+ "createTime":{"shape":"Timestamp"}
1056
+ }
1057
+ },
1058
+ "DeploymentConfigLimitExceededException":{
1059
+ "type":"structure",
1060
+ "members":{
1061
+ },
1062
+ "exception":true
1063
+ },
1064
+ "DeploymentConfigName":{
1065
+ "type":"string",
1066
+ "min":1,
1067
+ "max":100
1068
+ },
1069
+ "DeploymentConfigNameRequiredException":{
1070
+ "type":"structure",
1071
+ "members":{
1072
+ },
1073
+ "exception":true
1074
+ },
1075
+ "DeploymentConfigsList":{
1076
+ "type":"list",
1077
+ "member":{"shape":"DeploymentConfigName"}
1078
+ },
1079
+ "DeploymentCreator":{
1080
+ "type":"string",
1081
+ "enum":[
1082
+ "user",
1083
+ "autoscaling"
1084
+ ]
1085
+ },
1086
+ "DeploymentDoesNotExistException":{
1087
+ "type":"structure",
1088
+ "members":{
1089
+ },
1090
+ "exception":true
1091
+ },
1092
+ "DeploymentGroupAlreadyExistsException":{
1093
+ "type":"structure",
1094
+ "members":{
1095
+ },
1096
+ "exception":true
1097
+ },
1098
+ "DeploymentGroupDoesNotExistException":{
1099
+ "type":"structure",
1100
+ "members":{
1101
+ },
1102
+ "exception":true
1103
+ },
1104
+ "DeploymentGroupId":{"type":"string"},
1105
+ "DeploymentGroupInfo":{
1106
+ "type":"structure",
1107
+ "members":{
1108
+ "applicationName":{"shape":"ApplicationName"},
1109
+ "deploymentGroupId":{"shape":"DeploymentGroupId"},
1110
+ "deploymentGroupName":{"shape":"DeploymentGroupName"},
1111
+ "deploymentConfigName":{"shape":"DeploymentConfigName"},
1112
+ "ec2TagFilters":{"shape":"EC2TagFilterList"},
1113
+ "autoScalingGroups":{"shape":"AutoScalingGroupList"},
1114
+ "serviceRoleArn":{"shape":"Role"},
1115
+ "targetRevision":{"shape":"RevisionLocation"}
1116
+ }
1117
+ },
1118
+ "DeploymentGroupLimitExceededException":{
1119
+ "type":"structure",
1120
+ "members":{
1121
+ },
1122
+ "exception":true
1123
+ },
1124
+ "DeploymentGroupName":{
1125
+ "type":"string",
1126
+ "min":1,
1127
+ "max":100
1128
+ },
1129
+ "DeploymentGroupNameRequiredException":{
1130
+ "type":"structure",
1131
+ "members":{
1132
+ },
1133
+ "exception":true
1134
+ },
1135
+ "DeploymentGroupsList":{
1136
+ "type":"list",
1137
+ "member":{"shape":"DeploymentGroupName"}
1138
+ },
1139
+ "DeploymentId":{"type":"string"},
1140
+ "DeploymentIdRequiredException":{
1141
+ "type":"structure",
1142
+ "members":{
1143
+ },
1144
+ "exception":true
1145
+ },
1146
+ "DeploymentInfo":{
1147
+ "type":"structure",
1148
+ "members":{
1149
+ "applicationName":{"shape":"ApplicationName"},
1150
+ "deploymentGroupName":{"shape":"DeploymentGroupName"},
1151
+ "deploymentConfigName":{"shape":"DeploymentConfigName"},
1152
+ "deploymentId":{"shape":"DeploymentId"},
1153
+ "revision":{"shape":"RevisionLocation"},
1154
+ "status":{"shape":"DeploymentStatus"},
1155
+ "errorInformation":{"shape":"ErrorInformation"},
1156
+ "createTime":{"shape":"Timestamp"},
1157
+ "startTime":{"shape":"Timestamp"},
1158
+ "completeTime":{"shape":"Timestamp"},
1159
+ "deploymentOverview":{"shape":"DeploymentOverview"},
1160
+ "description":{"shape":"Description"},
1161
+ "creator":{"shape":"DeploymentCreator"},
1162
+ "ignoreApplicationStopFailures":{"shape":"Boolean"}
1163
+ }
1164
+ },
1165
+ "DeploymentLimitExceededException":{
1166
+ "type":"structure",
1167
+ "members":{
1168
+ },
1169
+ "exception":true
1170
+ },
1171
+ "DeploymentNotStartedException":{
1172
+ "type":"structure",
1173
+ "members":{
1174
+ },
1175
+ "exception":true
1176
+ },
1177
+ "DeploymentOverview":{
1178
+ "type":"structure",
1179
+ "members":{
1180
+ "Pending":{"shape":"InstanceCount"},
1181
+ "InProgress":{"shape":"InstanceCount"},
1182
+ "Succeeded":{"shape":"InstanceCount"},
1183
+ "Failed":{"shape":"InstanceCount"},
1184
+ "Skipped":{"shape":"InstanceCount"}
1185
+ }
1186
+ },
1187
+ "DeploymentStatus":{
1188
+ "type":"string",
1189
+ "enum":[
1190
+ "Created",
1191
+ "Queued",
1192
+ "InProgress",
1193
+ "Succeeded",
1194
+ "Failed",
1195
+ "Stopped"
1196
+ ]
1197
+ },
1198
+ "DeploymentStatusList":{
1199
+ "type":"list",
1200
+ "member":{"shape":"DeploymentStatus"}
1201
+ },
1202
+ "DeploymentsInfoList":{
1203
+ "type":"list",
1204
+ "member":{"shape":"DeploymentInfo"}
1205
+ },
1206
+ "DeploymentsList":{
1207
+ "type":"list",
1208
+ "member":{"shape":"DeploymentId"}
1209
+ },
1210
+ "Description":{"type":"string"},
1211
+ "DescriptionTooLongException":{
1212
+ "type":"structure",
1213
+ "members":{
1214
+ },
1215
+ "exception":true
1216
+ },
1217
+ "Diagnostics":{
1218
+ "type":"structure",
1219
+ "members":{
1220
+ "errorCode":{"shape":"LifecycleErrorCode"},
1221
+ "scriptName":{"shape":"ScriptName"},
1222
+ "message":{"shape":"LifecycleMessage"},
1223
+ "logTail":{"shape":"LogTail"}
1224
+ }
1225
+ },
1226
+ "EC2TagFilter":{
1227
+ "type":"structure",
1228
+ "members":{
1229
+ "Key":{"shape":"Key"},
1230
+ "Value":{"shape":"Value"},
1231
+ "Type":{"shape":"EC2TagFilterType"}
1232
+ }
1233
+ },
1234
+ "EC2TagFilterList":{
1235
+ "type":"list",
1236
+ "member":{"shape":"EC2TagFilter"}
1237
+ },
1238
+ "EC2TagFilterType":{
1239
+ "type":"string",
1240
+ "enum":[
1241
+ "KEY_ONLY",
1242
+ "VALUE_ONLY",
1243
+ "KEY_AND_VALUE"
1244
+ ]
1245
+ },
1246
+ "ETag":{"type":"string"},
1247
+ "ErrorCode":{
1248
+ "type":"string",
1249
+ "enum":[
1250
+ "DEPLOYMENT_GROUP_MISSING",
1251
+ "APPLICATION_MISSING",
1252
+ "REVISION_MISSING",
1253
+ "IAM_ROLE_MISSING",
1254
+ "IAM_ROLE_PERMISSIONS",
1255
+ "OVER_MAX_INSTANCES",
1256
+ "NO_INSTANCES",
1257
+ "TIMEOUT",
1258
+ "HEALTH_CONSTRAINTS_INVALID",
1259
+ "HEALTH_CONSTRAINTS",
1260
+ "INTERNAL_ERROR"
1261
+ ]
1262
+ },
1263
+ "ErrorInformation":{
1264
+ "type":"structure",
1265
+ "members":{
1266
+ "code":{"shape":"ErrorCode"},
1267
+ "message":{"shape":"ErrorMessage"}
1268
+ }
1269
+ },
1270
+ "ErrorMessage":{"type":"string"},
1271
+ "GenericRevisionInfo":{
1272
+ "type":"structure",
1273
+ "members":{
1274
+ "description":{"shape":"Description"},
1275
+ "deploymentGroups":{"shape":"DeploymentGroupsList"},
1276
+ "firstUsedTime":{"shape":"Timestamp"},
1277
+ "lastUsedTime":{"shape":"Timestamp"},
1278
+ "registerTime":{"shape":"Timestamp"}
1279
+ }
1280
+ },
1281
+ "GetApplicationInput":{
1282
+ "type":"structure",
1283
+ "required":["applicationName"],
1284
+ "members":{
1285
+ "applicationName":{"shape":"ApplicationName"}
1286
+ }
1287
+ },
1288
+ "GetApplicationOutput":{
1289
+ "type":"structure",
1290
+ "members":{
1291
+ "application":{"shape":"ApplicationInfo"}
1292
+ }
1293
+ },
1294
+ "GetApplicationRevisionInput":{
1295
+ "type":"structure",
1296
+ "required":[
1297
+ "applicationName",
1298
+ "revision"
1299
+ ],
1300
+ "members":{
1301
+ "applicationName":{"shape":"ApplicationName"},
1302
+ "revision":{"shape":"RevisionLocation"}
1303
+ }
1304
+ },
1305
+ "GetApplicationRevisionOutput":{
1306
+ "type":"structure",
1307
+ "members":{
1308
+ "applicationName":{"shape":"ApplicationName"},
1309
+ "revision":{"shape":"RevisionLocation"},
1310
+ "revisionInfo":{"shape":"GenericRevisionInfo"}
1311
+ }
1312
+ },
1313
+ "GetDeploymentConfigInput":{
1314
+ "type":"structure",
1315
+ "required":["deploymentConfigName"],
1316
+ "members":{
1317
+ "deploymentConfigName":{"shape":"DeploymentConfigName"}
1318
+ }
1319
+ },
1320
+ "GetDeploymentConfigOutput":{
1321
+ "type":"structure",
1322
+ "members":{
1323
+ "deploymentConfigInfo":{"shape":"DeploymentConfigInfo"}
1324
+ }
1325
+ },
1326
+ "GetDeploymentGroupInput":{
1327
+ "type":"structure",
1328
+ "required":[
1329
+ "applicationName",
1330
+ "deploymentGroupName"
1331
+ ],
1332
+ "members":{
1333
+ "applicationName":{"shape":"ApplicationName"},
1334
+ "deploymentGroupName":{"shape":"DeploymentGroupName"}
1335
+ }
1336
+ },
1337
+ "GetDeploymentGroupOutput":{
1338
+ "type":"structure",
1339
+ "members":{
1340
+ "deploymentGroupInfo":{"shape":"DeploymentGroupInfo"}
1341
+ }
1342
+ },
1343
+ "GetDeploymentInput":{
1344
+ "type":"structure",
1345
+ "required":["deploymentId"],
1346
+ "members":{
1347
+ "deploymentId":{"shape":"DeploymentId"}
1348
+ }
1349
+ },
1350
+ "GetDeploymentInstanceInput":{
1351
+ "type":"structure",
1352
+ "required":[
1353
+ "deploymentId",
1354
+ "instanceId"
1355
+ ],
1356
+ "members":{
1357
+ "deploymentId":{"shape":"DeploymentId"},
1358
+ "instanceId":{"shape":"InstanceId"}
1359
+ }
1360
+ },
1361
+ "GetDeploymentInstanceOutput":{
1362
+ "type":"structure",
1363
+ "members":{
1364
+ "instanceSummary":{"shape":"InstanceSummary"}
1365
+ }
1366
+ },
1367
+ "GetDeploymentOutput":{
1368
+ "type":"structure",
1369
+ "members":{
1370
+ "deploymentInfo":{"shape":"DeploymentInfo"}
1371
+ }
1372
+ },
1373
+ "GitHubLocation":{
1374
+ "type":"structure",
1375
+ "members":{
1376
+ "repository":{"shape":"Repository"},
1377
+ "commitId":{"shape":"CommitId"}
1378
+ }
1379
+ },
1380
+ "InstanceCount":{"type":"long"},
1381
+ "InstanceDoesNotExistException":{
1382
+ "type":"structure",
1383
+ "members":{
1384
+ },
1385
+ "exception":true
1386
+ },
1387
+ "InstanceId":{"type":"string"},
1388
+ "InstanceIdRequiredException":{
1389
+ "type":"structure",
1390
+ "members":{
1391
+ },
1392
+ "exception":true
1393
+ },
1394
+ "InstanceStatus":{
1395
+ "type":"string",
1396
+ "enum":[
1397
+ "Pending",
1398
+ "InProgress",
1399
+ "Succeeded",
1400
+ "Failed",
1401
+ "Skipped",
1402
+ "Unknown"
1403
+ ]
1404
+ },
1405
+ "InstanceStatusList":{
1406
+ "type":"list",
1407
+ "member":{"shape":"InstanceStatus"}
1408
+ },
1409
+ "InstanceSummary":{
1410
+ "type":"structure",
1411
+ "members":{
1412
+ "deploymentId":{"shape":"DeploymentId"},
1413
+ "instanceId":{"shape":"InstanceId"},
1414
+ "status":{"shape":"InstanceStatus"},
1415
+ "lastUpdatedAt":{"shape":"Timestamp"},
1416
+ "lifecycleEvents":{"shape":"LifecycleEventList"}
1417
+ }
1418
+ },
1419
+ "InstancesList":{
1420
+ "type":"list",
1421
+ "member":{"shape":"InstanceId"}
1422
+ },
1423
+ "InvalidApplicationNameException":{
1424
+ "type":"structure",
1425
+ "members":{
1426
+ },
1427
+ "exception":true
1428
+ },
1429
+ "InvalidAutoScalingGroupException":{
1430
+ "type":"structure",
1431
+ "members":{
1432
+ },
1433
+ "exception":true
1434
+ },
1435
+ "InvalidBucketNameFilterException":{
1436
+ "type":"structure",
1437
+ "members":{
1438
+ },
1439
+ "exception":true
1440
+ },
1441
+ "InvalidDeployedStateFilterException":{
1442
+ "type":"structure",
1443
+ "members":{
1444
+ },
1445
+ "exception":true
1446
+ },
1447
+ "InvalidDeploymentConfigNameException":{
1448
+ "type":"structure",
1449
+ "members":{
1450
+ },
1451
+ "exception":true
1452
+ },
1453
+ "InvalidDeploymentGroupNameException":{
1454
+ "type":"structure",
1455
+ "members":{
1456
+ },
1457
+ "exception":true
1458
+ },
1459
+ "InvalidDeploymentIdException":{
1460
+ "type":"structure",
1461
+ "members":{
1462
+ },
1463
+ "exception":true
1464
+ },
1465
+ "InvalidDeploymentStatusException":{
1466
+ "type":"structure",
1467
+ "members":{
1468
+ },
1469
+ "exception":true
1470
+ },
1471
+ "InvalidEC2TagException":{
1472
+ "type":"structure",
1473
+ "members":{
1474
+ },
1475
+ "exception":true
1476
+ },
1477
+ "InvalidInstanceStatusException":{
1478
+ "type":"structure",
1479
+ "members":{
1480
+ },
1481
+ "exception":true
1482
+ },
1483
+ "InvalidKeyPrefixFilterException":{
1484
+ "type":"structure",
1485
+ "members":{
1486
+ },
1487
+ "exception":true
1488
+ },
1489
+ "InvalidMinimumHealthyHostValueException":{
1490
+ "type":"structure",
1491
+ "members":{
1492
+ },
1493
+ "exception":true
1494
+ },
1495
+ "InvalidNextTokenException":{
1496
+ "type":"structure",
1497
+ "members":{
1498
+ },
1499
+ "exception":true
1500
+ },
1501
+ "InvalidOperationException":{
1502
+ "type":"structure",
1503
+ "members":{
1504
+ },
1505
+ "exception":true
1506
+ },
1507
+ "InvalidRevisionException":{
1508
+ "type":"structure",
1509
+ "members":{
1510
+ },
1511
+ "exception":true
1512
+ },
1513
+ "InvalidRoleException":{
1514
+ "type":"structure",
1515
+ "members":{
1516
+ },
1517
+ "exception":true
1518
+ },
1519
+ "InvalidSortByException":{
1520
+ "type":"structure",
1521
+ "members":{
1522
+ },
1523
+ "exception":true
1524
+ },
1525
+ "InvalidSortOrderException":{
1526
+ "type":"structure",
1527
+ "members":{
1528
+ },
1529
+ "exception":true
1530
+ },
1531
+ "InvalidTimeRangeException":{
1532
+ "type":"structure",
1533
+ "members":{
1534
+ },
1535
+ "exception":true
1536
+ },
1537
+ "Key":{"type":"string"},
1538
+ "LifecycleErrorCode":{
1539
+ "type":"string",
1540
+ "enum":[
1541
+ "Success",
1542
+ "ScriptMissing",
1543
+ "ScriptNotExecutable",
1544
+ "ScriptTimedOut",
1545
+ "ScriptFailed",
1546
+ "UnknownError"
1547
+ ]
1548
+ },
1549
+ "LifecycleEvent":{
1550
+ "type":"structure",
1551
+ "members":{
1552
+ "lifecycleEventName":{"shape":"LifecycleEventName"},
1553
+ "diagnostics":{"shape":"Diagnostics"},
1554
+ "startTime":{"shape":"Timestamp"},
1555
+ "endTime":{"shape":"Timestamp"},
1556
+ "status":{"shape":"LifecycleEventStatus"}
1557
+ }
1558
+ },
1559
+ "LifecycleEventList":{
1560
+ "type":"list",
1561
+ "member":{"shape":"LifecycleEvent"}
1562
+ },
1563
+ "LifecycleEventName":{"type":"string"},
1564
+ "LifecycleEventStatus":{
1565
+ "type":"string",
1566
+ "enum":[
1567
+ "Pending",
1568
+ "InProgress",
1569
+ "Succeeded",
1570
+ "Failed",
1571
+ "Skipped",
1572
+ "Unknown"
1573
+ ]
1574
+ },
1575
+ "LifecycleMessage":{"type":"string"},
1576
+ "ListApplicationRevisionsInput":{
1577
+ "type":"structure",
1578
+ "required":["applicationName"],
1579
+ "members":{
1580
+ "applicationName":{"shape":"ApplicationName"},
1581
+ "sortBy":{"shape":"ApplicationRevisionSortBy"},
1582
+ "sortOrder":{"shape":"SortOrder"},
1583
+ "s3Bucket":{"shape":"S3Bucket"},
1584
+ "s3KeyPrefix":{"shape":"S3Key"},
1585
+ "deployed":{"shape":"ListStateFilterAction"},
1586
+ "nextToken":{"shape":"NextToken"}
1587
+ }
1588
+ },
1589
+ "ListApplicationRevisionsOutput":{
1590
+ "type":"structure",
1591
+ "members":{
1592
+ "revisions":{"shape":"RevisionLocationList"},
1593
+ "nextToken":{"shape":"NextToken"}
1594
+ }
1595
+ },
1596
+ "ListApplicationsInput":{
1597
+ "type":"structure",
1598
+ "members":{
1599
+ "nextToken":{"shape":"NextToken"}
1600
+ }
1601
+ },
1602
+ "ListApplicationsOutput":{
1603
+ "type":"structure",
1604
+ "members":{
1605
+ "applications":{"shape":"ApplicationsList"},
1606
+ "nextToken":{"shape":"NextToken"}
1607
+ }
1608
+ },
1609
+ "ListDeploymentConfigsInput":{
1610
+ "type":"structure",
1611
+ "members":{
1612
+ "nextToken":{"shape":"NextToken"}
1613
+ }
1614
+ },
1615
+ "ListDeploymentConfigsOutput":{
1616
+ "type":"structure",
1617
+ "members":{
1618
+ "deploymentConfigsList":{"shape":"DeploymentConfigsList"},
1619
+ "nextToken":{"shape":"NextToken"}
1620
+ }
1621
+ },
1622
+ "ListDeploymentGroupsInput":{
1623
+ "type":"structure",
1624
+ "required":["applicationName"],
1625
+ "members":{
1626
+ "applicationName":{"shape":"ApplicationName"},
1627
+ "nextToken":{"shape":"NextToken"}
1628
+ }
1629
+ },
1630
+ "ListDeploymentGroupsOutput":{
1631
+ "type":"structure",
1632
+ "members":{
1633
+ "applicationName":{"shape":"ApplicationName"},
1634
+ "deploymentGroups":{"shape":"DeploymentGroupsList"},
1635
+ "nextToken":{"shape":"NextToken"}
1636
+ }
1637
+ },
1638
+ "ListDeploymentInstancesInput":{
1639
+ "type":"structure",
1640
+ "required":["deploymentId"],
1641
+ "members":{
1642
+ "deploymentId":{"shape":"DeploymentId"},
1643
+ "nextToken":{"shape":"NextToken"},
1644
+ "instanceStatusFilter":{"shape":"InstanceStatusList"}
1645
+ }
1646
+ },
1647
+ "ListDeploymentInstancesOutput":{
1648
+ "type":"structure",
1649
+ "members":{
1650
+ "instancesList":{"shape":"InstancesList"},
1651
+ "nextToken":{"shape":"NextToken"}
1652
+ }
1653
+ },
1654
+ "ListDeploymentsInput":{
1655
+ "type":"structure",
1656
+ "members":{
1657
+ "applicationName":{"shape":"ApplicationName"},
1658
+ "deploymentGroupName":{"shape":"DeploymentGroupName"},
1659
+ "includeOnlyStatuses":{"shape":"DeploymentStatusList"},
1660
+ "createTimeRange":{"shape":"TimeRange"},
1661
+ "nextToken":{"shape":"NextToken"}
1662
+ }
1663
+ },
1664
+ "ListDeploymentsOutput":{
1665
+ "type":"structure",
1666
+ "members":{
1667
+ "deployments":{"shape":"DeploymentsList"},
1668
+ "nextToken":{"shape":"NextToken"}
1669
+ }
1670
+ },
1671
+ "ListStateFilterAction":{
1672
+ "type":"string",
1673
+ "enum":[
1674
+ "include",
1675
+ "exclude",
1676
+ "ignore"
1677
+ ]
1678
+ },
1679
+ "LogTail":{"type":"string"},
1680
+ "Message":{"type":"string"},
1681
+ "MinimumHealthyHosts":{
1682
+ "type":"structure",
1683
+ "members":{
1684
+ "value":{"shape":"MinimumHealthyHostsValue"},
1685
+ "type":{"shape":"MinimumHealthyHostsType"}
1686
+ }
1687
+ },
1688
+ "MinimumHealthyHostsType":{
1689
+ "type":"string",
1690
+ "enum":[
1691
+ "HOST_COUNT",
1692
+ "FLEET_PERCENT"
1693
+ ]
1694
+ },
1695
+ "MinimumHealthyHostsValue":{"type":"integer"},
1696
+ "NextToken":{"type":"string"},
1697
+ "RegisterApplicationRevisionInput":{
1698
+ "type":"structure",
1699
+ "required":[
1700
+ "applicationName",
1701
+ "revision"
1702
+ ],
1703
+ "members":{
1704
+ "applicationName":{"shape":"ApplicationName"},
1705
+ "description":{"shape":"Description"},
1706
+ "revision":{"shape":"RevisionLocation"}
1707
+ }
1708
+ },
1709
+ "Repository":{"type":"string"},
1710
+ "RevisionDoesNotExistException":{
1711
+ "type":"structure",
1712
+ "members":{
1713
+ },
1714
+ "exception":true
1715
+ },
1716
+ "RevisionLocation":{
1717
+ "type":"structure",
1718
+ "members":{
1719
+ "revisionType":{"shape":"RevisionLocationType"},
1720
+ "s3Location":{"shape":"S3Location"},
1721
+ "gitHubLocation":{"shape":"GitHubLocation"}
1722
+ }
1723
+ },
1724
+ "RevisionLocationList":{
1725
+ "type":"list",
1726
+ "member":{"shape":"RevisionLocation"}
1727
+ },
1728
+ "RevisionLocationType":{
1729
+ "type":"string",
1730
+ "enum":[
1731
+ "S3",
1732
+ "GitHub"
1733
+ ]
1734
+ },
1735
+ "RevisionRequiredException":{
1736
+ "type":"structure",
1737
+ "members":{
1738
+ },
1739
+ "exception":true
1740
+ },
1741
+ "Role":{"type":"string"},
1742
+ "RoleRequiredException":{
1743
+ "type":"structure",
1744
+ "members":{
1745
+ },
1746
+ "exception":true
1747
+ },
1748
+ "S3Bucket":{"type":"string"},
1749
+ "S3Key":{"type":"string"},
1750
+ "S3Location":{
1751
+ "type":"structure",
1752
+ "members":{
1753
+ "bucket":{"shape":"S3Bucket"},
1754
+ "key":{"shape":"S3Key"},
1755
+ "bundleType":{"shape":"BundleType"},
1756
+ "version":{"shape":"VersionId"},
1757
+ "eTag":{"shape":"ETag"}
1758
+ }
1759
+ },
1760
+ "ScriptName":{"type":"string"},
1761
+ "SortOrder":{
1762
+ "type":"string",
1763
+ "enum":[
1764
+ "ascending",
1765
+ "descending"
1766
+ ]
1767
+ },
1768
+ "StopDeploymentInput":{
1769
+ "type":"structure",
1770
+ "required":["deploymentId"],
1771
+ "members":{
1772
+ "deploymentId":{"shape":"DeploymentId"}
1773
+ }
1774
+ },
1775
+ "StopDeploymentOutput":{
1776
+ "type":"structure",
1777
+ "members":{
1778
+ "status":{"shape":"StopStatus"},
1779
+ "statusMessage":{"shape":"Message"}
1780
+ }
1781
+ },
1782
+ "StopStatus":{
1783
+ "type":"string",
1784
+ "enum":[
1785
+ "Pending",
1786
+ "Succeeded"
1787
+ ]
1788
+ },
1789
+ "TimeRange":{
1790
+ "type":"structure",
1791
+ "members":{
1792
+ "start":{"shape":"Timestamp"},
1793
+ "end":{"shape":"Timestamp"}
1794
+ }
1795
+ },
1796
+ "Timestamp":{"type":"timestamp"},
1797
+ "UpdateApplicationInput":{
1798
+ "type":"structure",
1799
+ "members":{
1800
+ "applicationName":{"shape":"ApplicationName"},
1801
+ "newApplicationName":{"shape":"ApplicationName"}
1802
+ }
1803
+ },
1804
+ "UpdateDeploymentGroupInput":{
1805
+ "type":"structure",
1806
+ "required":[
1807
+ "applicationName",
1808
+ "currentDeploymentGroupName"
1809
+ ],
1810
+ "members":{
1811
+ "applicationName":{"shape":"ApplicationName"},
1812
+ "currentDeploymentGroupName":{"shape":"DeploymentGroupName"},
1813
+ "newDeploymentGroupName":{"shape":"DeploymentGroupName"},
1814
+ "deploymentConfigName":{"shape":"DeploymentConfigName"},
1815
+ "ec2TagFilters":{"shape":"EC2TagFilterList"},
1816
+ "autoScalingGroups":{"shape":"AutoScalingGroupNameList"},
1817
+ "serviceRoleArn":{"shape":"Role"}
1818
+ }
1819
+ },
1820
+ "UpdateDeploymentGroupOutput":{
1821
+ "type":"structure",
1822
+ "members":{
1823
+ "hooksNotCleanedUp":{"shape":"AutoScalingGroupList"}
1824
+ }
1825
+ },
1826
+ "Value":{"type":"string"},
1827
+ "VersionId":{"type":"string"}
1828
+ }
1829
+ }