aws-sdk-core 2.9.12 → 2.9.13

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: 0555466f36199c64564e61c733a1cbc3dd0d61a4
4
- data.tar.gz: a23ae604659de77bb4e4bb8bf42a08e032d0de8c
3
+ metadata.gz: f095cfbd82edc470a8441bf20d13e5cba8246d2b
4
+ data.tar.gz: 24f914b30ef32bc48849a5c8c8c73a0ac22d4c09
5
5
  SHA512:
6
- metadata.gz: 0d6e8411299e0184c5a95ce3342c3f10b0e147fee859784ea29244a28d3e020f0f6d99e67341b0bf0e1a8fe8416088b309ac07710d6fb59aff21be15a4b0adf0
7
- data.tar.gz: 0c90112dc164a872f2e6faea2cb740e024b834e618a682105d88e0a74785106eefc4c25024357a9a032b89f13df2425298e44fbacc5b93d62fee8c1b9f2f64af
6
+ metadata.gz: 646993b102e266b672bf9704ba86d188c163ba31208582ea04c9d3e7a4d9542c2734de092ca96578a56436185d2afc2ace88828209ada474b91d59b3715083b9
7
+ data.tar.gz: 8dc2d4b4f4353c9042522edfb473d93f6a8a6b5385e5ddb7ec43b7f2f0a63f8ef77a457400eaf34dacad6193025f889a823b61fc894634bc8b769e7b477e5c9f
@@ -16,7 +16,10 @@
16
16
  "method":"POST",
17
17
  "requestUri":"/"
18
18
  },
19
- "input":{"shape":"CancelUpdateStackInput"}
19
+ "input":{"shape":"CancelUpdateStackInput"},
20
+ "errors":[
21
+ {"shape":"TokenAlreadyExistsException"}
22
+ ]
20
23
  },
21
24
  "ContinueUpdateRollback":{
22
25
  "name":"ContinueUpdateRollback",
@@ -28,7 +31,10 @@
28
31
  "output":{
29
32
  "shape":"ContinueUpdateRollbackOutput",
30
33
  "resultWrapper":"ContinueUpdateRollbackResult"
31
- }
34
+ },
35
+ "errors":[
36
+ {"shape":"TokenAlreadyExistsException"}
37
+ ]
32
38
  },
33
39
  "CreateChangeSet":{
34
40
  "name":"CreateChangeSet",
@@ -61,6 +67,7 @@
61
67
  "errors":[
62
68
  {"shape":"LimitExceededException"},
63
69
  {"shape":"AlreadyExistsException"},
70
+ {"shape":"TokenAlreadyExistsException"},
64
71
  {"shape":"InsufficientCapabilitiesException"}
65
72
  ]
66
73
  },
@@ -85,7 +92,10 @@
85
92
  "method":"POST",
86
93
  "requestUri":"/"
87
94
  },
88
- "input":{"shape":"DeleteStackInput"}
95
+ "input":{"shape":"DeleteStackInput"},
96
+ "errors":[
97
+ {"shape":"TokenAlreadyExistsException"}
98
+ ]
89
99
  },
90
100
  "DescribeAccountLimits":{
91
101
  "name":"DescribeAccountLimits",
@@ -188,7 +198,8 @@
188
198
  "errors":[
189
199
  {"shape":"InvalidChangeSetStatusException"},
190
200
  {"shape":"ChangeSetNotFoundException"},
191
- {"shape":"InsufficientCapabilitiesException"}
201
+ {"shape":"InsufficientCapabilitiesException"},
202
+ {"shape":"TokenAlreadyExistsException"}
192
203
  ]
193
204
  },
194
205
  "GetStackPolicy":{
@@ -318,7 +329,8 @@
318
329
  "resultWrapper":"UpdateStackResult"
319
330
  },
320
331
  "errors":[
321
- {"shape":"InsufficientCapabilitiesException"}
332
+ {"shape":"InsufficientCapabilitiesException"},
333
+ {"shape":"TokenAlreadyExistsException"}
322
334
  ]
323
335
  },
324
336
  "ValidateTemplate":{
@@ -366,7 +378,8 @@
366
378
  "type":"structure",
367
379
  "required":["StackName"],
368
380
  "members":{
369
- "StackName":{"shape":"StackName"}
381
+ "StackName":{"shape":"StackName"},
382
+ "ClientRequestToken":{"shape":"ClientRequestToken"}
370
383
  }
371
384
  },
372
385
  "Capabilities":{
@@ -479,6 +492,12 @@
479
492
  "type":"list",
480
493
  "member":{"shape":"Change"}
481
494
  },
495
+ "ClientRequestToken":{
496
+ "type":"string",
497
+ "max":128,
498
+ "min":1,
499
+ "pattern":"[a-zA-Z][-a-zA-Z0-9]*"
500
+ },
482
501
  "ClientToken":{
483
502
  "type":"string",
484
503
  "max":128,
@@ -490,7 +509,8 @@
490
509
  "members":{
491
510
  "StackName":{"shape":"StackNameOrId"},
492
511
  "RoleARN":{"shape":"RoleARN"},
493
- "ResourcesToSkip":{"shape":"ResourcesToSkip"}
512
+ "ResourcesToSkip":{"shape":"ResourcesToSkip"},
513
+ "ClientRequestToken":{"shape":"ClientRequestToken"}
494
514
  }
495
515
  },
496
516
  "ContinueUpdateRollbackOutput":{
@@ -545,7 +565,8 @@
545
565
  "OnFailure":{"shape":"OnFailure"},
546
566
  "StackPolicyBody":{"shape":"StackPolicyBody"},
547
567
  "StackPolicyURL":{"shape":"StackPolicyURL"},
548
- "Tags":{"shape":"Tags"}
568
+ "Tags":{"shape":"Tags"},
569
+ "ClientRequestToken":{"shape":"ClientRequestToken"}
549
570
  }
550
571
  },
551
572
  "CreateStackOutput":{
@@ -574,7 +595,8 @@
574
595
  "members":{
575
596
  "StackName":{"shape":"StackName"},
576
597
  "RetainResources":{"shape":"RetainResources"},
577
- "RoleARN":{"shape":"RoleARN"}
598
+ "RoleARN":{"shape":"RoleARN"},
599
+ "ClientRequestToken":{"shape":"ClientRequestToken"}
578
600
  }
579
601
  },
580
602
  "DeletionTime":{"type":"timestamp"},
@@ -712,7 +734,8 @@
712
734
  "required":["ChangeSetName"],
713
735
  "members":{
714
736
  "ChangeSetName":{"shape":"ChangeSetNameOrId"},
715
- "StackName":{"shape":"StackNameOrId"}
737
+ "StackName":{"shape":"StackNameOrId"},
738
+ "ClientRequestToken":{"shape":"ClientRequestToken"}
716
739
  }
717
740
  },
718
741
  "ExecuteChangeSetOutput":{
@@ -1167,7 +1190,8 @@
1167
1190
  "Timestamp":{"shape":"Timestamp"},
1168
1191
  "ResourceStatus":{"shape":"ResourceStatus"},
1169
1192
  "ResourceStatusReason":{"shape":"ResourceStatusReason"},
1170
- "ResourceProperties":{"shape":"ResourceProperties"}
1193
+ "ResourceProperties":{"shape":"ResourceProperties"},
1194
+ "ClientRequestToken":{"shape":"ClientRequestToken"}
1171
1195
  }
1172
1196
  },
1173
1197
  "StackEvents":{
@@ -1372,6 +1396,17 @@
1372
1396
  "min":1
1373
1397
  },
1374
1398
  "Timestamp":{"type":"timestamp"},
1399
+ "TokenAlreadyExistsException":{
1400
+ "type":"structure",
1401
+ "members":{
1402
+ },
1403
+ "error":{
1404
+ "code":"TokenAlreadyExistsException",
1405
+ "httpStatusCode":400,
1406
+ "senderFault":true
1407
+ },
1408
+ "exception":true
1409
+ },
1375
1410
  "TransformName":{"type":"string"},
1376
1411
  "TransformsList":{
1377
1412
  "type":"list",
@@ -1394,7 +1429,8 @@
1394
1429
  "StackPolicyBody":{"shape":"StackPolicyBody"},
1395
1430
  "StackPolicyURL":{"shape":"StackPolicyURL"},
1396
1431
  "NotificationARNs":{"shape":"NotificationARNs"},
1397
- "Tags":{"shape":"Tags"}
1432
+ "Tags":{"shape":"Tags"},
1433
+ "ClientRequestToken":{"shape":"ClientRequestToken"}
1398
1434
  }
1399
1435
  },
1400
1436
  "UpdateStackOutput":{
@@ -1,158 +1,5 @@
1
1
  {
2
2
  "version": "1.0",
3
3
  "examples": {
4
- "CancelUpdateStack": [
5
- {
6
- "input": {
7
- "StackName": "MyStack"
8
- },
9
- "comments": {
10
- "input": {
11
- },
12
- "output": {
13
- }
14
- },
15
- "description": "This example cancels an update of the specified stack.",
16
- "id": "to-cancel-a-stack-update-that-is-in-progress-1472747085196",
17
- "title": "To cancel a stack update in progress"
18
- }
19
- ],
20
- "UpdateStack": [
21
- {
22
- "input": {
23
- "NotificationARNs": [
24
-
25
- ],
26
- "Parameters": [
27
- {
28
- "ParameterKey": "KeyPairName",
29
- "ParameterValue": "ExampleKeyPair"
30
- },
31
- {
32
- "ParameterKey": "SubnetIDs",
33
- "ParameterValue": "ExampleSubnetID1, ExampleSubnetID2"
34
- }
35
- ],
36
- "ResourceTypes": [
37
-
38
- ],
39
- "StackName": "MyStack",
40
- "Tags": [
41
-
42
- ],
43
- "TemplateURL": "https://s3.amazonaws.com/example/updated.template"
44
- },
45
- "output": {
46
- "StackId": ""
47
- },
48
- "comments": {
49
- "input": {
50
- },
51
- "output": {
52
- }
53
- },
54
- "description": "This example updates the template and input parameters for the specified stack.",
55
- "id": "to-update-an-aws-cloudformation-stack-1472841931621",
56
- "title": "To update an AWS CloudFormation stack"
57
- },
58
- {
59
- "input": {
60
- "NotificationARNs": [
61
-
62
- ],
63
- "Parameters": [
64
- {
65
- "ParameterKey": "KeyPairName",
66
- "UsePreviousValue": true
67
- },
68
- {
69
- "ParameterKey": "SubnetIDs",
70
- "ParameterValue": "SampleSubnetID1, UpdatedSampleSubnetID2"
71
- }
72
- ],
73
- "ResourceTypes": [
74
-
75
- ],
76
- "StackName": "MyStack",
77
- "Tags": [
78
-
79
- ],
80
- "TemplateURL": "https://s3.amazonaws.com/example/updated.template"
81
- },
82
- "output": {
83
- "StackId": ""
84
- },
85
- "comments": {
86
- "input": {
87
- },
88
- "output": {
89
- }
90
- },
91
- "description": "This example updates only the the specified parameter value for the specified stack. If you don't specify a parameter value, AWS CloudFormation uses the default value from the template.",
92
- "id": "to-update-an-aws-cloudformation-stack-1472841931621",
93
- "title": "To update an AWS CloudFormation stack"
94
- },
95
- {
96
- "input": {
97
- "Capabilities": [
98
-
99
- ],
100
- "NotificationARNs": [
101
- "arn:aws:sns:use-east-1:123456789012:mytopic1",
102
- "arn:aws:sns:us-east-1:123456789012:mytopic2"
103
- ],
104
- "Parameters": [
105
-
106
- ],
107
- "ResourceTypes": [
108
-
109
- ],
110
- "StackName": "MyStack",
111
- "Tags": [
112
-
113
- ],
114
- "TemplateURL": "https://s3.amazonaws.com/example/updated.template",
115
- "UsePreviousTemplate": true
116
- },
117
- "output": {
118
- "StackId": ""
119
- },
120
- "comments": {
121
- "input": {
122
- },
123
- "output": {
124
- }
125
- },
126
- "description": "This example adds two stack notification topics to the specified stack.",
127
- "id": "to-update-an-aws-cloudformation-stack-1472841931621",
128
- "title": "To update an AWS CloudFormation stack"
129
- }
130
- ],
131
- "ValidateTemplate": [
132
- {
133
- "input": {
134
- "TemplateBody": "MyTemplate.json"
135
- },
136
- "output": {
137
- "Capabilities": [
138
-
139
- ],
140
- "CapabilitiesReason": "",
141
- "Description": "AWS CloudFormation Example Template S3_Bucket: An example template that shows how to create a publicly-accessible S3 bucket. IMPORTANT: This template creates an S3 bucket. You will be billed for the AWS resources used if you create a stack from this template.",
142
- "Parameters": [
143
-
144
- ]
145
- },
146
- "comments": {
147
- "input": {
148
- },
149
- "output": {
150
- }
151
- },
152
- "description": "This example validates the specified template.",
153
- "id": "to-validate-an-aws-cloudformation-template-1472839072307",
154
- "title": "To validate an AWS CloudFormation template"
155
- }
156
- ]
157
4
  }
158
5
  }
@@ -13,16 +13,6 @@
13
13
  "output_token": "NextToken",
14
14
  "result_key": "Stacks"
15
15
  },
16
- "ListExports": {
17
- "input_token": "NextToken",
18
- "output_token": "NextToken",
19
- "result_key": "Exports"
20
- },
21
- "ListImports": {
22
- "input_token": "NextToken",
23
- "output_token": "NextToken",
24
- "result_key": "Imports"
25
- },
26
16
  "ListStackResources": {
27
17
  "input_token": "NextToken",
28
18
  "output_token": "NextToken",
@@ -152,31 +152,6 @@
152
152
  "state": "failure"
153
153
  }
154
154
  ]
155
- },
156
- "ChangeSetCreateComplete": {
157
- "delay": 30,
158
- "operation": "DescribeChangeSet",
159
- "maxAttempts": 120,
160
- "description": "Wait until change set status is CREATE_COMPLETE.",
161
- "acceptors": [
162
- {
163
- "argument": "Status",
164
- "expected": "CREATE_COMPLETE",
165
- "matcher": "path",
166
- "state": "success"
167
- },
168
- {
169
- "argument": "Status",
170
- "expected": "FAILED",
171
- "matcher": "path",
172
- "state": "failure"
173
- },
174
- {
175
- "expected": "ValidationError",
176
- "matcher": "error",
177
- "state": "failure"
178
- }
179
- ]
180
155
  }
181
156
  }
182
157
  }
@@ -2334,6 +2334,7 @@
2334
2334
  "StorageEncrypted":{"shape":"Boolean"},
2335
2335
  "KmsKeyId":{"shape":"String"},
2336
2336
  "DBClusterSnapshotArn":{"shape":"String"},
2337
+ "SourceDBClusterSnapshotArn":{"shape":"String"},
2337
2338
  "IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"}
2338
2339
  },
2339
2340
  "wrapper":true
@@ -8,6 +8,8 @@
8
8
  "SubscriptionName": "mymysqleventsubscription"
9
9
  },
10
10
  "output": {
11
+ "EventSubscription": {
12
+ }
11
13
  },
12
14
  "comments": {
13
15
  "input": {
@@ -50,6 +52,8 @@
50
52
  "ResourceIdentifier": "arn:aws:rds:us-east-1:992648334831:db:mymysqlinstance"
51
53
  },
52
54
  "output": {
55
+ "ResourcePendingMaintenanceActions": {
56
+ }
53
57
  },
54
58
  "comments": {
55
59
  "input": {
@@ -69,6 +73,8 @@
69
73
  "DBSecurityGroupName": "mydbsecuritygroup"
70
74
  },
71
75
  "output": {
76
+ "DBSecurityGroup": {
77
+ }
72
78
  },
73
79
  "comments": {
74
80
  "input": {
@@ -89,6 +95,8 @@
89
95
  "TargetDBClusterParameterGroupIdentifier": "mydbclusterparametergroup-copy"
90
96
  },
91
97
  "output": {
98
+ "DBClusterParameterGroup": {
99
+ }
92
100
  },
93
101
  "comments": {
94
102
  "input": {
@@ -108,6 +116,8 @@
108
116
  "TargetDBClusterSnapshotIdentifier": "cluster-snapshot-copy-1"
109
117
  },
110
118
  "output": {
119
+ "DBClusterSnapshot": {
120
+ }
111
121
  },
112
122
  "comments": {
113
123
  "input": {
@@ -128,6 +138,8 @@
128
138
  "TargetDBParameterGroupIdentifier": "mymysqlparametergroup-copy"
129
139
  },
130
140
  "output": {
141
+ "DBParameterGroup": {
142
+ }
131
143
  },
132
144
  "comments": {
133
145
  "input": {
@@ -147,6 +159,8 @@
147
159
  "TargetDBSnapshotIdentifier": "mydbsnapshot-copy"
148
160
  },
149
161
  "output": {
162
+ "DBSnapshot": {
163
+ }
150
164
  },
151
165
  "comments": {
152
166
  "input": {
@@ -167,6 +181,8 @@
167
181
  "TargetOptionGroupIdentifier": "mymysqloptiongroup-copy"
168
182
  },
169
183
  "output": {
184
+ "OptionGroup": {
185
+ }
170
186
  },
171
187
  "comments": {
172
188
  "input": {
@@ -197,6 +213,8 @@
197
213
  "StorageEncrypted": true
198
214
  },
199
215
  "output": {
216
+ "DBCluster": {
217
+ }
200
218
  },
201
219
  "comments": {
202
220
  "input": {
@@ -217,6 +235,8 @@
217
235
  "Description": "My DB cluster parameter group"
218
236
  },
219
237
  "output": {
238
+ "DBClusterParameterGroup": {
239
+ }
220
240
  },
221
241
  "comments": {
222
242
  "input": {
@@ -236,6 +256,8 @@
236
256
  "DBClusterSnapshotIdentifier": "mydbclustersnapshot"
237
257
  },
238
258
  "output": {
259
+ "DBClusterSnapshot": {
260
+ }
239
261
  },
240
262
  "comments": {
241
263
  "input": {
@@ -259,6 +281,8 @@
259
281
  "MasterUsername": "MyUser"
260
282
  },
261
283
  "output": {
284
+ "DBInstance": {
285
+ }
262
286
  },
263
287
  "comments": {
264
288
  "input": {
@@ -289,6 +313,8 @@
289
313
  ]
290
314
  },
291
315
  "output": {
316
+ "DBInstance": {
317
+ }
292
318
  },
293
319
  "comments": {
294
320
  "input": {
@@ -309,6 +335,8 @@
309
335
  "Description": "My MySQL parameter group"
310
336
  },
311
337
  "output": {
338
+ "DBParameterGroup": {
339
+ }
312
340
  },
313
341
  "comments": {
314
342
  "input": {
@@ -328,6 +356,8 @@
328
356
  "DBSecurityGroupName": "mydbsecuritygroup"
329
357
  },
330
358
  "output": {
359
+ "DBSecurityGroup": {
360
+ }
331
361
  },
332
362
  "comments": {
333
363
  "input": {
@@ -347,6 +377,8 @@
347
377
  "DBSnapshotIdentifier": "mydbsnapshot"
348
378
  },
349
379
  "output": {
380
+ "DBSnapshot": {
381
+ }
350
382
  },
351
383
  "comments": {
352
384
  "input": {
@@ -370,6 +402,8 @@
370
402
  ]
371
403
  },
372
404
  "output": {
405
+ "DBSubnetGroup": {
406
+ }
373
407
  },
374
408
  "comments": {
375
409
  "input": {
@@ -397,6 +431,8 @@
397
431
  "SubscriptionName": "mymysqleventsubscription"
398
432
  },
399
433
  "output": {
434
+ "EventSubscription": {
435
+ }
400
436
  },
401
437
  "comments": {
402
438
  "input": {
@@ -418,6 +454,8 @@
418
454
  "OptionGroupName": "mymysqloptiongroup"
419
455
  },
420
456
  "output": {
457
+ "OptionGroup": {
458
+ }
421
459
  },
422
460
  "comments": {
423
461
  "input": {
@@ -437,6 +475,8 @@
437
475
  "SkipFinalSnapshot": true
438
476
  },
439
477
  "output": {
478
+ "DBCluster": {
479
+ }
440
480
  },
441
481
  "comments": {
442
482
  "input": {
@@ -471,6 +511,8 @@
471
511
  "DBClusterSnapshotIdentifier": "mydbclustersnapshot"
472
512
  },
473
513
  "output": {
514
+ "DBClusterSnapshot": {
515
+ }
474
516
  },
475
517
  "comments": {
476
518
  "input": {
@@ -490,6 +532,8 @@
490
532
  "SkipFinalSnapshot": true
491
533
  },
492
534
  "output": {
535
+ "DBInstance": {
536
+ }
493
537
  },
494
538
  "comments": {
495
539
  "input": {
@@ -540,6 +584,8 @@
540
584
  "DBSnapshotIdentifier": "mydbsnapshot"
541
585
  },
542
586
  "output": {
587
+ "DBSnapshot": {
588
+ }
543
589
  },
544
590
  "comments": {
545
591
  "input": {
@@ -574,6 +620,8 @@
574
620
  "SubscriptionName": "myeventsubscription"
575
621
  },
576
622
  "output": {
623
+ "EventSubscription": {
624
+ }
577
625
  },
578
626
  "comments": {
579
627
  "input": {
@@ -681,6 +729,8 @@
681
729
  "DBClusterSnapshotIdentifier": "mydbclustersnapshot"
682
730
  },
683
731
  "output": {
732
+ "DBClusterSnapshotAttributesResult": {
733
+ }
684
734
  },
685
735
  "comments": {
686
736
  "input": {
@@ -853,6 +903,8 @@
853
903
  "DBSnapshotIdentifier": "mydbsnapshot"
854
904
  },
855
905
  "output": {
906
+ "DBSnapshotAttributesResult": {
907
+ }
856
908
  },
857
909
  "comments": {
858
910
  "input": {
@@ -910,6 +962,8 @@
910
962
  "DBParameterGroupFamily": "aurora5.6"
911
963
  },
912
964
  "output": {
965
+ "EngineDefaults": {
966
+ }
913
967
  },
914
968
  "comments": {
915
969
  "input": {
@@ -928,6 +982,8 @@
928
982
  "DBParameterGroupFamily": "mysql5.6"
929
983
  },
930
984
  "output": {
985
+ "EngineDefaults": {
986
+ }
931
987
  },
932
988
  "comments": {
933
989
  "input": {
@@ -1212,6 +1268,8 @@
1212
1268
  "TargetDBInstanceIdentifier": "myaurorareplica"
1213
1269
  },
1214
1270
  "output": {
1271
+ "DBCluster": {
1272
+ }
1215
1273
  },
1216
1274
  "comments": {
1217
1275
  "input": {
@@ -1253,6 +1311,8 @@
1253
1311
  "PreferredMaintenanceWindow": "Tue:05:00-Tue:05:30"
1254
1312
  },
1255
1313
  "output": {
1314
+ "DBCluster": {
1315
+ }
1256
1316
  },
1257
1317
  "comments": {
1258
1318
  "input": {
@@ -1304,6 +1364,8 @@
1304
1364
  ]
1305
1365
  },
1306
1366
  "output": {
1367
+ "DBClusterSnapshotAttributesResult": {
1368
+ }
1307
1369
  },
1308
1370
  "comments": {
1309
1371
  "input": {
@@ -1329,6 +1391,8 @@
1329
1391
  "PreferredMaintenanceWindow": "Tue:05:00-Tue:05:30"
1330
1392
  },
1331
1393
  "output": {
1394
+ "DBInstance": {
1395
+ }
1332
1396
  },
1333
1397
  "comments": {
1334
1398
  "input": {
@@ -1376,6 +1440,8 @@
1376
1440
  ]
1377
1441
  },
1378
1442
  "output": {
1443
+ "DBSnapshotAttributesResult": {
1444
+ }
1379
1445
  },
1380
1446
  "comments": {
1381
1447
  "input": {
@@ -1398,6 +1464,8 @@
1398
1464
  ]
1399
1465
  },
1400
1466
  "output": {
1467
+ "DBSubnetGroup": {
1468
+ }
1401
1469
  },
1402
1470
  "comments": {
1403
1471
  "input": {
@@ -1422,6 +1490,8 @@
1422
1490
  "SubscriptionName": "mymysqleventsubscription"
1423
1491
  },
1424
1492
  "output": {
1493
+ "EventSubscription": {
1494
+ }
1425
1495
  },
1426
1496
  "comments": {
1427
1497
  "input": {
@@ -1449,6 +1519,8 @@
1449
1519
  ]
1450
1520
  },
1451
1521
  "output": {
1522
+ "OptionGroup": {
1523
+ }
1452
1524
  },
1453
1525
  "comments": {
1454
1526
  "input": {
@@ -1469,6 +1541,8 @@
1469
1541
  "PreferredBackupWindow": "03:30-04:00"
1470
1542
  },
1471
1543
  "output": {
1544
+ "DBInstance": {
1545
+ }
1472
1546
  },
1473
1547
  "comments": {
1474
1548
  "input": {
@@ -1488,6 +1562,8 @@
1488
1562
  "ReservedDBInstancesOfferingId": "fb29428a-646d-4390-850e-5fe89926e727"
1489
1563
  },
1490
1564
  "output": {
1565
+ "ReservedDBInstance": {
1566
+ }
1491
1567
  },
1492
1568
  "comments": {
1493
1569
  "input": {
@@ -1507,6 +1583,8 @@
1507
1583
  "ForceFailover": false
1508
1584
  },
1509
1585
  "output": {
1586
+ "DBInstance": {
1587
+ }
1510
1588
  },
1511
1589
  "comments": {
1512
1590
  "input": {
@@ -1526,6 +1604,8 @@
1526
1604
  "SubscriptionName": "myeventsubscription"
1527
1605
  },
1528
1606
  "output": {
1607
+ "EventSubscription": {
1608
+ }
1529
1609
  },
1530
1610
  "comments": {
1531
1611
  "input": {
@@ -1603,6 +1683,8 @@
1603
1683
  "SnapshotIdentifier": "sample-cluster-snapshot1"
1604
1684
  },
1605
1685
  "output": {
1686
+ "DBCluster": {
1687
+ }
1606
1688
  },
1607
1689
  "comments": {
1608
1690
  "input": {
@@ -1623,6 +1705,8 @@
1623
1705
  "SourceDBClusterIdentifier": "sample-cluster1"
1624
1706
  },
1625
1707
  "output": {
1708
+ "DBCluster": {
1709
+ }
1626
1710
  },
1627
1711
  "comments": {
1628
1712
  "input": {
@@ -1642,88 +1726,90 @@
1642
1726
  "DBSnapshotIdentifier": "rds:mysqldb-2014-04-22-08-15"
1643
1727
  },
1644
1728
  "output": {
1645
- "AllocatedStorage": 200,
1646
- "AutoMinorVersionUpgrade": true,
1647
- "AvailabilityZone": "us-west-2b",
1648
- "BackupRetentionPeriod": 7,
1649
- "CACertificateIdentifier": "rds-ca-2015",
1650
- "CopyTagsToSnapshot": false,
1651
- "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:mysqldb-restored",
1652
- "DBInstanceClass": "db.t2.small",
1653
- "DBInstanceIdentifier": "mysqldb-restored",
1654
- "DBInstanceStatus": "available",
1655
- "DBName": "sample",
1656
- "DBParameterGroups": [
1657
- {
1658
- "DBParameterGroupName": "default.mysql5.6",
1659
- "ParameterApplyStatus": "in-sync"
1660
- }
1661
- ],
1662
- "DBSecurityGroups": [
1663
-
1664
- ],
1665
- "DBSubnetGroup": {
1666
- "DBSubnetGroupDescription": "default",
1667
- "DBSubnetGroupName": "default",
1668
- "SubnetGroupStatus": "Complete",
1669
- "Subnets": [
1729
+ "DBInstance": {
1730
+ "AllocatedStorage": 200,
1731
+ "AutoMinorVersionUpgrade": true,
1732
+ "AvailabilityZone": "us-west-2b",
1733
+ "BackupRetentionPeriod": 7,
1734
+ "CACertificateIdentifier": "rds-ca-2015",
1735
+ "CopyTagsToSnapshot": false,
1736
+ "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:mysqldb-restored",
1737
+ "DBInstanceClass": "db.t2.small",
1738
+ "DBInstanceIdentifier": "mysqldb-restored",
1739
+ "DBInstanceStatus": "available",
1740
+ "DBName": "sample",
1741
+ "DBParameterGroups": [
1670
1742
  {
1671
- "SubnetAvailabilityZone": {
1672
- "Name": "us-west-2a"
1743
+ "DBParameterGroupName": "default.mysql5.6",
1744
+ "ParameterApplyStatus": "in-sync"
1745
+ }
1746
+ ],
1747
+ "DBSecurityGroups": [
1748
+
1749
+ ],
1750
+ "DBSubnetGroup": {
1751
+ "DBSubnetGroupDescription": "default",
1752
+ "DBSubnetGroupName": "default",
1753
+ "SubnetGroupStatus": "Complete",
1754
+ "Subnets": [
1755
+ {
1756
+ "SubnetAvailabilityZone": {
1757
+ "Name": "us-west-2a"
1758
+ },
1759
+ "SubnetIdentifier": "subnet-77e8db03",
1760
+ "SubnetStatus": "Active"
1673
1761
  },
1674
- "SubnetIdentifier": "subnet-77e8db03",
1675
- "SubnetStatus": "Active"
1676
- },
1677
- {
1678
- "SubnetAvailabilityZone": {
1679
- "Name": "us-west-2b"
1762
+ {
1763
+ "SubnetAvailabilityZone": {
1764
+ "Name": "us-west-2b"
1765
+ },
1766
+ "SubnetIdentifier": "subnet-c39989a1",
1767
+ "SubnetStatus": "Active"
1680
1768
  },
1681
- "SubnetIdentifier": "subnet-c39989a1",
1682
- "SubnetStatus": "Active"
1683
- },
1769
+ {
1770
+ "SubnetAvailabilityZone": {
1771
+ "Name": "us-west-2c"
1772
+ },
1773
+ "SubnetIdentifier": "subnet-4b267b0d",
1774
+ "SubnetStatus": "Active"
1775
+ }
1776
+ ],
1777
+ "VpcId": "vpc-c1c5b3a3"
1778
+ },
1779
+ "DbInstancePort": 0,
1780
+ "DbiResourceId": "db-VNZUCCBTEDC4WR7THXNJO72HVQ",
1781
+ "DomainMemberships": [
1782
+
1783
+ ],
1784
+ "Engine": "mysql",
1785
+ "EngineVersion": "5.6.27",
1786
+ "LicenseModel": "general-public-license",
1787
+ "MasterUsername": "mymasteruser",
1788
+ "MonitoringInterval": 0,
1789
+ "MultiAZ": false,
1790
+ "OptionGroupMemberships": [
1684
1791
  {
1685
- "SubnetAvailabilityZone": {
1686
- "Name": "us-west-2c"
1687
- },
1688
- "SubnetIdentifier": "subnet-4b267b0d",
1689
- "SubnetStatus": "Active"
1792
+ "OptionGroupName": "default:mysql-5-6",
1793
+ "Status": "in-sync"
1690
1794
  }
1691
1795
  ],
1692
- "VpcId": "vpc-c1c5b3a3"
1693
- },
1694
- "DbInstancePort": 0,
1695
- "DbiResourceId": "db-VNZUCCBTEDC4WR7THXNJO72HVQ",
1696
- "DomainMemberships": [
1697
-
1698
- ],
1699
- "Engine": "mysql",
1700
- "EngineVersion": "5.6.27",
1701
- "LicenseModel": "general-public-license",
1702
- "MasterUsername": "mymasteruser",
1703
- "MonitoringInterval": 0,
1704
- "MultiAZ": false,
1705
- "OptionGroupMemberships": [
1706
- {
1707
- "OptionGroupName": "default:mysql-5-6",
1708
- "Status": "in-sync"
1709
- }
1710
- ],
1711
- "PendingModifiedValues": {
1712
- },
1713
- "PreferredBackupWindow": "12:58-13:28",
1714
- "PreferredMaintenanceWindow": "tue:10:16-tue:10:46",
1715
- "PubliclyAccessible": true,
1716
- "ReadReplicaDBInstanceIdentifiers": [
1796
+ "PendingModifiedValues": {
1797
+ },
1798
+ "PreferredBackupWindow": "12:58-13:28",
1799
+ "PreferredMaintenanceWindow": "tue:10:16-tue:10:46",
1800
+ "PubliclyAccessible": true,
1801
+ "ReadReplicaDBInstanceIdentifiers": [
1717
1802
 
1718
- ],
1719
- "StorageEncrypted": false,
1720
- "StorageType": "gp2",
1721
- "VpcSecurityGroups": [
1722
- {
1723
- "Status": "active",
1724
- "VpcSecurityGroupId": "sg-e5e5b0d2"
1725
- }
1726
- ]
1803
+ ],
1804
+ "StorageEncrypted": false,
1805
+ "StorageType": "gp2",
1806
+ "VpcSecurityGroups": [
1807
+ {
1808
+ "Status": "active",
1809
+ "VpcSecurityGroupId": "sg-e5e5b0d2"
1810
+ }
1811
+ ]
1812
+ }
1727
1813
  },
1728
1814
  "comments": {
1729
1815
  "input": {
@@ -1744,88 +1830,90 @@
1744
1830
  "TargetDBInstanceIdentifier": "mysql-sample-restored"
1745
1831
  },
1746
1832
  "output": {
1747
- "AllocatedStorage": 200,
1748
- "AutoMinorVersionUpgrade": true,
1749
- "AvailabilityZone": "us-west-2b",
1750
- "BackupRetentionPeriod": 7,
1751
- "CACertificateIdentifier": "rds-ca-2015",
1752
- "CopyTagsToSnapshot": false,
1753
- "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:mysql-sample-restored",
1754
- "DBInstanceClass": "db.t2.small",
1755
- "DBInstanceIdentifier": "mysql-sample-restored",
1756
- "DBInstanceStatus": "available",
1757
- "DBName": "sample",
1758
- "DBParameterGroups": [
1759
- {
1760
- "DBParameterGroupName": "default.mysql5.6",
1761
- "ParameterApplyStatus": "in-sync"
1762
- }
1763
- ],
1764
- "DBSecurityGroups": [
1765
-
1766
- ],
1767
- "DBSubnetGroup": {
1768
- "DBSubnetGroupDescription": "default",
1769
- "DBSubnetGroupName": "default",
1770
- "SubnetGroupStatus": "Complete",
1771
- "Subnets": [
1833
+ "DBInstance": {
1834
+ "AllocatedStorage": 200,
1835
+ "AutoMinorVersionUpgrade": true,
1836
+ "AvailabilityZone": "us-west-2b",
1837
+ "BackupRetentionPeriod": 7,
1838
+ "CACertificateIdentifier": "rds-ca-2015",
1839
+ "CopyTagsToSnapshot": false,
1840
+ "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:mysql-sample-restored",
1841
+ "DBInstanceClass": "db.t2.small",
1842
+ "DBInstanceIdentifier": "mysql-sample-restored",
1843
+ "DBInstanceStatus": "available",
1844
+ "DBName": "sample",
1845
+ "DBParameterGroups": [
1772
1846
  {
1773
- "SubnetAvailabilityZone": {
1774
- "Name": "us-west-2a"
1847
+ "DBParameterGroupName": "default.mysql5.6",
1848
+ "ParameterApplyStatus": "in-sync"
1849
+ }
1850
+ ],
1851
+ "DBSecurityGroups": [
1852
+
1853
+ ],
1854
+ "DBSubnetGroup": {
1855
+ "DBSubnetGroupDescription": "default",
1856
+ "DBSubnetGroupName": "default",
1857
+ "SubnetGroupStatus": "Complete",
1858
+ "Subnets": [
1859
+ {
1860
+ "SubnetAvailabilityZone": {
1861
+ "Name": "us-west-2a"
1862
+ },
1863
+ "SubnetIdentifier": "subnet-77e8db03",
1864
+ "SubnetStatus": "Active"
1775
1865
  },
1776
- "SubnetIdentifier": "subnet-77e8db03",
1777
- "SubnetStatus": "Active"
1778
- },
1779
- {
1780
- "SubnetAvailabilityZone": {
1781
- "Name": "us-west-2b"
1866
+ {
1867
+ "SubnetAvailabilityZone": {
1868
+ "Name": "us-west-2b"
1869
+ },
1870
+ "SubnetIdentifier": "subnet-c39989a1",
1871
+ "SubnetStatus": "Active"
1782
1872
  },
1783
- "SubnetIdentifier": "subnet-c39989a1",
1784
- "SubnetStatus": "Active"
1785
- },
1873
+ {
1874
+ "SubnetAvailabilityZone": {
1875
+ "Name": "us-west-2c"
1876
+ },
1877
+ "SubnetIdentifier": "subnet-4b267b0d",
1878
+ "SubnetStatus": "Active"
1879
+ }
1880
+ ],
1881
+ "VpcId": "vpc-c1c5b3a3"
1882
+ },
1883
+ "DbInstancePort": 0,
1884
+ "DbiResourceId": "db-VNZUCCBTEDC4WR7THXNJO72HVQ",
1885
+ "DomainMemberships": [
1886
+
1887
+ ],
1888
+ "Engine": "mysql",
1889
+ "EngineVersion": "5.6.27",
1890
+ "LicenseModel": "general-public-license",
1891
+ "MasterUsername": "mymasteruser",
1892
+ "MonitoringInterval": 0,
1893
+ "MultiAZ": false,
1894
+ "OptionGroupMemberships": [
1786
1895
  {
1787
- "SubnetAvailabilityZone": {
1788
- "Name": "us-west-2c"
1789
- },
1790
- "SubnetIdentifier": "subnet-4b267b0d",
1791
- "SubnetStatus": "Active"
1896
+ "OptionGroupName": "default:mysql-5-6",
1897
+ "Status": "in-sync"
1792
1898
  }
1793
1899
  ],
1794
- "VpcId": "vpc-c1c5b3a3"
1795
- },
1796
- "DbInstancePort": 0,
1797
- "DbiResourceId": "db-VNZUCCBTEDC4WR7THXNJO72HVQ",
1798
- "DomainMemberships": [
1799
-
1800
- ],
1801
- "Engine": "mysql",
1802
- "EngineVersion": "5.6.27",
1803
- "LicenseModel": "general-public-license",
1804
- "MasterUsername": "mymasteruser",
1805
- "MonitoringInterval": 0,
1806
- "MultiAZ": false,
1807
- "OptionGroupMemberships": [
1808
- {
1809
- "OptionGroupName": "default:mysql-5-6",
1810
- "Status": "in-sync"
1811
- }
1812
- ],
1813
- "PendingModifiedValues": {
1814
- },
1815
- "PreferredBackupWindow": "12:58-13:28",
1816
- "PreferredMaintenanceWindow": "tue:10:16-tue:10:46",
1817
- "PubliclyAccessible": true,
1818
- "ReadReplicaDBInstanceIdentifiers": [
1900
+ "PendingModifiedValues": {
1901
+ },
1902
+ "PreferredBackupWindow": "12:58-13:28",
1903
+ "PreferredMaintenanceWindow": "tue:10:16-tue:10:46",
1904
+ "PubliclyAccessible": true,
1905
+ "ReadReplicaDBInstanceIdentifiers": [
1819
1906
 
1820
- ],
1821
- "StorageEncrypted": false,
1822
- "StorageType": "gp2",
1823
- "VpcSecurityGroups": [
1824
- {
1825
- "Status": "active",
1826
- "VpcSecurityGroupId": "sg-e5e5b0d2"
1827
- }
1828
- ]
1907
+ ],
1908
+ "StorageEncrypted": false,
1909
+ "StorageType": "gp2",
1910
+ "VpcSecurityGroups": [
1911
+ {
1912
+ "Status": "active",
1913
+ "VpcSecurityGroupId": "sg-e5e5b0d2"
1914
+ }
1915
+ ]
1916
+ }
1829
1917
  },
1830
1918
  "comments": {
1831
1919
  "input": {
@@ -1845,6 +1933,8 @@
1845
1933
  "DBSecurityGroupName": "mydbsecuritygroup"
1846
1934
  },
1847
1935
  "output": {
1936
+ "DBSecurityGroup": {
1937
+ }
1848
1938
  },
1849
1939
  "comments": {
1850
1940
  "input": {