aws-sdk-core 2.9.22 → 2.9.23

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,1053 @@
1
1
  {
2
2
  "version": "1.0",
3
3
  "examples": {
4
+ "AddTagsToResource": [
5
+ {
6
+ "input": {
7
+ "ResourceArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E",
8
+ "Tags": [
9
+ {
10
+ "Key": "Acount",
11
+ "Value": "1633456"
12
+ }
13
+ ]
14
+ },
15
+ "output": {
16
+ },
17
+ "comments": {
18
+ "input": {
19
+ "ResourceArn": "Required. Use the ARN of the resource you want to tag.",
20
+ "Tags": "Required. Use the Key/Value pair format."
21
+ },
22
+ "output": {
23
+ }
24
+ },
25
+ "description": "Adds metadata tags to an AWS DMS resource, including replication instance, endpoint, security group, and migration task. These tags can also be used with cost allocation reporting to track cost associated with AWS DMS resources, or used in a Condition statement in an IAM policy for AWS DMS.",
26
+ "id": "add-tags-to-resource-1481744141435",
27
+ "title": "Add tags to resource"
28
+ }
29
+ ],
30
+ "CreateEndpoint": [
31
+ {
32
+ "input": {
33
+ "CertificateArn": "",
34
+ "DatabaseName": "testdb",
35
+ "EndpointIdentifier": "test-endpoint-1",
36
+ "EndpointType": "source",
37
+ "EngineName": "mysql",
38
+ "ExtraConnectionAttributes": "",
39
+ "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd",
40
+ "Password": "pasword",
41
+ "Port": 3306,
42
+ "ServerName": "mydb.cx1llnox7iyx.us-west-2.rds.amazonaws.com",
43
+ "SslMode": "require",
44
+ "Tags": [
45
+ {
46
+ "Key": "Acount",
47
+ "Value": "143327655"
48
+ }
49
+ ],
50
+ "Username": "username"
51
+ },
52
+ "output": {
53
+ "Endpoint": {
54
+ "EndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM",
55
+ "EndpointIdentifier": "test-endpoint-1",
56
+ "EndpointType": "source",
57
+ "EngineName": "mysql",
58
+ "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd",
59
+ "Port": 3306,
60
+ "ServerName": "mydb.cx1llnox7iyx.us-west-2.rds.amazonaws.com",
61
+ "Status": "active",
62
+ "Username": "username"
63
+ }
64
+ },
65
+ "comments": {
66
+ "input": {
67
+ },
68
+ "output": {
69
+ }
70
+ },
71
+ "description": "Creates an endpoint using the provided settings.",
72
+ "id": "create-endpoint-1481746254348",
73
+ "title": "Create endpoint"
74
+ }
75
+ ],
76
+ "CreateReplicationInstance": [
77
+ {
78
+ "input": {
79
+ "AllocatedStorage": 123,
80
+ "AutoMinorVersionUpgrade": true,
81
+ "AvailabilityZone": "",
82
+ "EngineVersion": "",
83
+ "KmsKeyId": "",
84
+ "MultiAZ": true,
85
+ "PreferredMaintenanceWindow": "",
86
+ "PubliclyAccessible": true,
87
+ "ReplicationInstanceClass": "",
88
+ "ReplicationInstanceIdentifier": "",
89
+ "ReplicationSubnetGroupIdentifier": "",
90
+ "Tags": [
91
+ {
92
+ "Key": "string",
93
+ "Value": "string"
94
+ }
95
+ ],
96
+ "VpcSecurityGroupIds": [
97
+
98
+ ]
99
+ },
100
+ "output": {
101
+ "ReplicationInstance": {
102
+ "AllocatedStorage": 5,
103
+ "AutoMinorVersionUpgrade": true,
104
+ "EngineVersion": "1.5.0",
105
+ "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd",
106
+ "PendingModifiedValues": {
107
+ },
108
+ "PreferredMaintenanceWindow": "sun:06:00-sun:14:00",
109
+ "PubliclyAccessible": true,
110
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
111
+ "ReplicationInstanceClass": "dms.t2.micro",
112
+ "ReplicationInstanceIdentifier": "test-rep-1",
113
+ "ReplicationInstanceStatus": "creating",
114
+ "ReplicationSubnetGroup": {
115
+ "ReplicationSubnetGroupDescription": "default",
116
+ "ReplicationSubnetGroupIdentifier": "default",
117
+ "SubnetGroupStatus": "Complete",
118
+ "Subnets": [
119
+ {
120
+ "SubnetAvailabilityZone": {
121
+ "Name": "us-east-1d"
122
+ },
123
+ "SubnetIdentifier": "subnet-f6dd91af",
124
+ "SubnetStatus": "Active"
125
+ },
126
+ {
127
+ "SubnetAvailabilityZone": {
128
+ "Name": "us-east-1b"
129
+ },
130
+ "SubnetIdentifier": "subnet-3605751d",
131
+ "SubnetStatus": "Active"
132
+ },
133
+ {
134
+ "SubnetAvailabilityZone": {
135
+ "Name": "us-east-1c"
136
+ },
137
+ "SubnetIdentifier": "subnet-c2daefb5",
138
+ "SubnetStatus": "Active"
139
+ },
140
+ {
141
+ "SubnetAvailabilityZone": {
142
+ "Name": "us-east-1e"
143
+ },
144
+ "SubnetIdentifier": "subnet-85e90cb8",
145
+ "SubnetStatus": "Active"
146
+ }
147
+ ],
148
+ "VpcId": "vpc-6741a603"
149
+ }
150
+ }
151
+ },
152
+ "comments": {
153
+ "output": {
154
+ }
155
+ },
156
+ "description": "Creates the replication instance using the specified parameters.",
157
+ "id": "create-replication-instance-1481746705295",
158
+ "title": "Create replication instance"
159
+ }
160
+ ],
161
+ "CreateReplicationSubnetGroup": [
162
+ {
163
+ "input": {
164
+ "ReplicationSubnetGroupDescription": "US West subnet group",
165
+ "ReplicationSubnetGroupIdentifier": "us-west-2ab-vpc-215ds366",
166
+ "SubnetIds": [
167
+ "subnet-e145356n",
168
+ "subnet-58f79200"
169
+ ],
170
+ "Tags": [
171
+ {
172
+ "Key": "Acount",
173
+ "Value": "145235"
174
+ }
175
+ ]
176
+ },
177
+ "output": {
178
+ "ReplicationSubnetGroup": {
179
+ }
180
+ },
181
+ "comments": {
182
+ "output": {
183
+ }
184
+ },
185
+ "description": "Creates a replication subnet group given a list of the subnet IDs in a VPC.",
186
+ "id": "create-replication-subnet-group-1481747297930",
187
+ "title": "Create replication subnet group"
188
+ }
189
+ ],
190
+ "CreateReplicationTask": [
191
+ {
192
+ "input": {
193
+ "CdcStartTime": "2016-12-14T18:25:43Z",
194
+ "MigrationType": "full-load",
195
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
196
+ "ReplicationTaskIdentifier": "task1",
197
+ "ReplicationTaskSettings": "",
198
+ "SourceEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE",
199
+ "TableMappings": "file://mappingfile.json",
200
+ "Tags": [
201
+ {
202
+ "Key": "Acount",
203
+ "Value": "24352226"
204
+ }
205
+ ],
206
+ "TargetEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E"
207
+ },
208
+ "output": {
209
+ "ReplicationTask": {
210
+ "MigrationType": "full-load",
211
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
212
+ "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM",
213
+ "ReplicationTaskCreationDate": "2016-12-14T18:25:43Z",
214
+ "ReplicationTaskIdentifier": "task1",
215
+ "ReplicationTaskSettings": "{\"TargetMetadata\":{\"TargetSchema\":\"\",\"SupportLobs\":true,\"FullLobMode\":true,\"LobChunkSize\":64,\"LimitedSizeLobMode\":false,\"LobMaxSize\":0},\"FullLoadSettings\":{\"FullLoadEnabled\":true,\"ApplyChangesEnabled\":false,\"TargetTablePrepMode\":\"DROP_AND_CREATE\",\"CreatePkAfterFullLoad\":false,\"StopTaskCachedChangesApplied\":false,\"StopTaskCachedChangesNotApplied\":false,\"ResumeEnabled\":false,\"ResumeMinTableSize\":100000,\"ResumeOnlyClusteredPKTables\":true,\"MaxFullLoadSubTasks\":8,\"TransactionConsistencyTimeout\":600,\"CommitRate\":10000},\"Logging\":{\"EnableLogging\":false}}",
216
+ "SourceEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE",
217
+ "Status": "creating",
218
+ "TableMappings": "file://mappingfile.json",
219
+ "TargetEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E"
220
+ }
221
+ },
222
+ "comments": {
223
+ "input": {
224
+ },
225
+ "output": {
226
+ }
227
+ },
228
+ "description": "Creates a replication task using the specified parameters.",
229
+ "id": "create-replication-task-1481747646288",
230
+ "title": "Create replication task"
231
+ }
232
+ ],
233
+ "DeleteCertificate": [
234
+ {
235
+ "input": {
236
+ "CertificateArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUSM457DE6XFJCJQ"
237
+ },
238
+ "output": {
239
+ "Certificate": {
240
+ }
241
+ },
242
+ "comments": {
243
+ "input": {
244
+ },
245
+ "output": {
246
+ }
247
+ },
248
+ "description": "Deletes the specified certificate.",
249
+ "id": "delete-certificate-1481751957981",
250
+ "title": "Delete Certificate"
251
+ }
252
+ ],
253
+ "DeleteEndpoint": [
254
+ {
255
+ "input": {
256
+ "EndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM"
257
+ },
258
+ "output": {
259
+ "Endpoint": {
260
+ "EndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM",
261
+ "EndpointIdentifier": "test-endpoint-1",
262
+ "EndpointType": "source",
263
+ "EngineName": "mysql",
264
+ "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd",
265
+ "Port": 3306,
266
+ "ServerName": "mydb.cx1llnox7iyx.us-west-2.rds.amazonaws.com",
267
+ "Status": "active",
268
+ "Username": "username"
269
+ }
270
+ },
271
+ "comments": {
272
+ "input": {
273
+ },
274
+ "output": {
275
+ }
276
+ },
277
+ "description": "Deletes the specified endpoint. All tasks associated with the endpoint must be deleted before you can delete the endpoint.\n",
278
+ "id": "delete-endpoint-1481752425530",
279
+ "title": "Delete Endpoint"
280
+ }
281
+ ],
282
+ "DeleteReplicationInstance": [
283
+ {
284
+ "input": {
285
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ"
286
+ },
287
+ "output": {
288
+ "ReplicationInstance": {
289
+ "AllocatedStorage": 5,
290
+ "AutoMinorVersionUpgrade": true,
291
+ "EngineVersion": "1.5.0",
292
+ "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd",
293
+ "PendingModifiedValues": {
294
+ },
295
+ "PreferredMaintenanceWindow": "sun:06:00-sun:14:00",
296
+ "PubliclyAccessible": true,
297
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
298
+ "ReplicationInstanceClass": "dms.t2.micro",
299
+ "ReplicationInstanceIdentifier": "test-rep-1",
300
+ "ReplicationInstanceStatus": "creating",
301
+ "ReplicationSubnetGroup": {
302
+ "ReplicationSubnetGroupDescription": "default",
303
+ "ReplicationSubnetGroupIdentifier": "default",
304
+ "SubnetGroupStatus": "Complete",
305
+ "Subnets": [
306
+ {
307
+ "SubnetAvailabilityZone": {
308
+ "Name": "us-east-1d"
309
+ },
310
+ "SubnetIdentifier": "subnet-f6dd91af",
311
+ "SubnetStatus": "Active"
312
+ },
313
+ {
314
+ "SubnetAvailabilityZone": {
315
+ "Name": "us-east-1b"
316
+ },
317
+ "SubnetIdentifier": "subnet-3605751d",
318
+ "SubnetStatus": "Active"
319
+ },
320
+ {
321
+ "SubnetAvailabilityZone": {
322
+ "Name": "us-east-1c"
323
+ },
324
+ "SubnetIdentifier": "subnet-c2daefb5",
325
+ "SubnetStatus": "Active"
326
+ },
327
+ {
328
+ "SubnetAvailabilityZone": {
329
+ "Name": "us-east-1e"
330
+ },
331
+ "SubnetIdentifier": "subnet-85e90cb8",
332
+ "SubnetStatus": "Active"
333
+ }
334
+ ],
335
+ "VpcId": "vpc-6741a603"
336
+ }
337
+ }
338
+ },
339
+ "comments": {
340
+ "output": {
341
+ }
342
+ },
343
+ "description": "Deletes the specified replication instance. You must delete any migration tasks that are associated with the replication instance before you can delete it.\n\n",
344
+ "id": "delete-replication-instance-1481752552839",
345
+ "title": "Delete Replication Instance"
346
+ }
347
+ ],
348
+ "DeleteReplicationSubnetGroup": [
349
+ {
350
+ "input": {
351
+ "ReplicationSubnetGroupIdentifier": "us-west-2ab-vpc-215ds366"
352
+ },
353
+ "output": {
354
+ },
355
+ "comments": {
356
+ "input": {
357
+ },
358
+ "output": {
359
+ }
360
+ },
361
+ "description": "Deletes a replication subnet group.",
362
+ "id": "delete-replication-subnet-group-1481752728597",
363
+ "title": "Delete Replication Subnet Group"
364
+ }
365
+ ],
366
+ "DeleteReplicationTask": [
367
+ {
368
+ "input": {
369
+ "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ"
370
+ },
371
+ "output": {
372
+ "ReplicationTask": {
373
+ "MigrationType": "full-load",
374
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
375
+ "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM",
376
+ "ReplicationTaskCreationDate": "2016-12-14T18:25:43Z",
377
+ "ReplicationTaskIdentifier": "task1",
378
+ "ReplicationTaskSettings": "{\"TargetMetadata\":{\"TargetSchema\":\"\",\"SupportLobs\":true,\"FullLobMode\":true,\"LobChunkSize\":64,\"LimitedSizeLobMode\":false,\"LobMaxSize\":0},\"FullLoadSettings\":{\"FullLoadEnabled\":true,\"ApplyChangesEnabled\":false,\"TargetTablePrepMode\":\"DROP_AND_CREATE\",\"CreatePkAfterFullLoad\":false,\"StopTaskCachedChangesApplied\":false,\"StopTaskCachedChangesNotApplied\":false,\"ResumeEnabled\":false,\"ResumeMinTableSize\":100000,\"ResumeOnlyClusteredPKTables\":true,\"MaxFullLoadSubTasks\":8,\"TransactionConsistencyTimeout\":600,\"CommitRate\":10000},\"Logging\":{\"EnableLogging\":false}}",
379
+ "SourceEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE",
380
+ "Status": "creating",
381
+ "TableMappings": "file://mappingfile.json",
382
+ "TargetEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E"
383
+ }
384
+ },
385
+ "comments": {
386
+ "input": {
387
+ },
388
+ "output": {
389
+ }
390
+ },
391
+ "description": "Deletes the specified replication task.",
392
+ "id": "delete-replication-task-1481752903506",
393
+ "title": "Delete Replication Task"
394
+ }
395
+ ],
396
+ "DescribeAccountAttributes": [
397
+ {
398
+ "input": {
399
+ },
400
+ "output": {
401
+ "AccountQuotas": [
402
+ {
403
+ "AccountQuotaName": "ReplicationInstances",
404
+ "Max": 20,
405
+ "Used": 0
406
+ },
407
+ {
408
+ "AccountQuotaName": "AllocatedStorage",
409
+ "Max": 20,
410
+ "Used": 0
411
+ },
412
+ {
413
+ "AccountQuotaName": "Endpoints",
414
+ "Max": 20,
415
+ "Used": 0
416
+ }
417
+ ]
418
+ },
419
+ "comments": {
420
+ "input": {
421
+ },
422
+ "output": {
423
+ }
424
+ },
425
+ "description": "Lists all of the AWS DMS attributes for a customer account. The attributes include AWS DMS quotas for the account, such as the number of replication instances allowed. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value. This operation does not take any parameters.",
426
+ "id": "describe-acount-attributes-1481753085663",
427
+ "title": "Describe acount attributes"
428
+ }
429
+ ],
430
+ "DescribeCertificates": [
431
+ {
432
+ "input": {
433
+ "Filters": [
434
+ {
435
+ "Name": "string",
436
+ "Values": [
437
+ "string",
438
+ "string"
439
+ ]
440
+ }
441
+ ],
442
+ "Marker": "",
443
+ "MaxRecords": 123
444
+ },
445
+ "output": {
446
+ "Certificates": [
447
+
448
+ ],
449
+ "Marker": ""
450
+ },
451
+ "comments": {
452
+ "input": {
453
+ },
454
+ "output": {
455
+ }
456
+ },
457
+ "description": "Provides a description of the certificate.",
458
+ "id": "describe-certificates-1481753186244",
459
+ "title": "Describe certificates"
460
+ }
461
+ ],
462
+ "DescribeConnections": [
463
+ {
464
+ "input": {
465
+ "Filters": [
466
+ {
467
+ "Name": "string",
468
+ "Values": [
469
+ "string",
470
+ "string"
471
+ ]
472
+ }
473
+ ],
474
+ "Marker": "",
475
+ "MaxRecords": 123
476
+ },
477
+ "output": {
478
+ "Connections": [
479
+ {
480
+ "EndpointArn": "arn:aws:dms:us-east-arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE",
481
+ "EndpointIdentifier": "testsrc1",
482
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
483
+ "ReplicationInstanceIdentifier": "test",
484
+ "Status": "successful"
485
+ }
486
+ ],
487
+ "Marker": ""
488
+ },
489
+ "comments": {
490
+ "input": {
491
+ },
492
+ "output": {
493
+ }
494
+ },
495
+ "description": "Describes the status of the connections that have been made between the replication instance and an endpoint. Connections are created when you test an endpoint.",
496
+ "id": "describe-connections-1481754477953",
497
+ "title": "Describe connections"
498
+ }
499
+ ],
500
+ "DescribeEndpointTypes": [
501
+ {
502
+ "input": {
503
+ "Filters": [
504
+ {
505
+ "Name": "string",
506
+ "Values": [
507
+ "string",
508
+ "string"
509
+ ]
510
+ }
511
+ ],
512
+ "Marker": "",
513
+ "MaxRecords": 123
514
+ },
515
+ "output": {
516
+ "Marker": "",
517
+ "SupportedEndpointTypes": [
518
+
519
+ ]
520
+ },
521
+ "comments": {
522
+ "input": {
523
+ },
524
+ "output": {
525
+ }
526
+ },
527
+ "description": "Returns information about the type of endpoints available.",
528
+ "id": "describe-endpoint-types-1481754742591",
529
+ "title": "Describe endpoint types"
530
+ }
531
+ ],
532
+ "DescribeEndpoints": [
533
+ {
534
+ "input": {
535
+ "Filters": [
536
+ {
537
+ "Name": "string",
538
+ "Values": [
539
+ "string",
540
+ "string"
541
+ ]
542
+ }
543
+ ],
544
+ "Marker": "",
545
+ "MaxRecords": 123
546
+ },
547
+ "output": {
548
+ "Endpoints": [
549
+
550
+ ],
551
+ "Marker": ""
552
+ },
553
+ "comments": {
554
+ "input": {
555
+ },
556
+ "output": {
557
+ }
558
+ },
559
+ "description": "Returns information about the endpoints for your account in the current region.",
560
+ "id": "describe-endpoints-1481754926060",
561
+ "title": "Describe endpoints"
562
+ }
563
+ ],
564
+ "DescribeOrderableReplicationInstances": [
565
+ {
566
+ "input": {
567
+ "Marker": "",
568
+ "MaxRecords": 123
569
+ },
570
+ "output": {
571
+ "Marker": "",
572
+ "OrderableReplicationInstances": [
573
+
574
+ ]
575
+ },
576
+ "comments": {
577
+ "input": {
578
+ },
579
+ "output": {
580
+ }
581
+ },
582
+ "description": "Returns information about the replication instance types that can be created in the specified region.",
583
+ "id": "describe-orderable-replication-instances-1481755123669",
584
+ "title": "Describe orderable replication instances"
585
+ }
586
+ ],
587
+ "DescribeRefreshSchemasStatus": [
588
+ {
589
+ "input": {
590
+ "EndpointArn": ""
591
+ },
592
+ "output": {
593
+ "RefreshSchemasStatus": {
594
+ }
595
+ },
596
+ "comments": {
597
+ "input": {
598
+ },
599
+ "output": {
600
+ }
601
+ },
602
+ "description": "Returns the status of the refresh-schemas operation.",
603
+ "id": "describe-refresh-schema-status-1481755303497",
604
+ "title": "Describe refresh schema status"
605
+ }
606
+ ],
607
+ "DescribeReplicationInstances": [
608
+ {
609
+ "input": {
610
+ "Filters": [
611
+ {
612
+ "Name": "string",
613
+ "Values": [
614
+ "string",
615
+ "string"
616
+ ]
617
+ }
618
+ ],
619
+ "Marker": "",
620
+ "MaxRecords": 123
621
+ },
622
+ "output": {
623
+ "Marker": "",
624
+ "ReplicationInstances": [
625
+
626
+ ]
627
+ },
628
+ "comments": {
629
+ "input": {
630
+ },
631
+ "output": {
632
+ }
633
+ },
634
+ "description": "Returns the status of the refresh-schemas operation.",
635
+ "id": "describe-replication-instances-1481755443952",
636
+ "title": "Describe replication instances"
637
+ }
638
+ ],
639
+ "DescribeReplicationSubnetGroups": [
640
+ {
641
+ "input": {
642
+ "Filters": [
643
+ {
644
+ "Name": "string",
645
+ "Values": [
646
+ "string",
647
+ "string"
648
+ ]
649
+ }
650
+ ],
651
+ "Marker": "",
652
+ "MaxRecords": 123
653
+ },
654
+ "output": {
655
+ "Marker": "",
656
+ "ReplicationSubnetGroups": [
657
+
658
+ ]
659
+ },
660
+ "comments": {
661
+ "input": {
662
+ },
663
+ "output": {
664
+ }
665
+ },
666
+ "description": "Returns information about the replication subnet groups.",
667
+ "id": "describe-replication-subnet-groups-1481755621284",
668
+ "title": "Describe replication subnet groups"
669
+ }
670
+ ],
671
+ "DescribeReplicationTasks": [
672
+ {
673
+ "input": {
674
+ "Filters": [
675
+ {
676
+ "Name": "string",
677
+ "Values": [
678
+ "string",
679
+ "string"
680
+ ]
681
+ }
682
+ ],
683
+ "Marker": "",
684
+ "MaxRecords": 123
685
+ },
686
+ "output": {
687
+ "Marker": "",
688
+ "ReplicationTasks": [
689
+
690
+ ]
691
+ },
692
+ "comments": {
693
+ "input": {
694
+ },
695
+ "output": {
696
+ }
697
+ },
698
+ "description": "Returns information about replication tasks for your account in the current region.",
699
+ "id": "describe-replication-tasks-1481755777563",
700
+ "title": "Describe replication tasks"
701
+ }
702
+ ],
703
+ "DescribeSchemas": [
704
+ {
705
+ "input": {
706
+ "EndpointArn": "",
707
+ "Marker": "",
708
+ "MaxRecords": 123
709
+ },
710
+ "output": {
711
+ "Marker": "",
712
+ "Schemas": [
713
+
714
+ ]
715
+ },
716
+ "comments": {
717
+ "input": {
718
+ },
719
+ "output": {
720
+ }
721
+ },
722
+ "description": "Returns information about the schema for the specified endpoint.",
723
+ "id": "describe-schemas-1481755933924",
724
+ "title": "Describe schemas"
725
+ }
726
+ ],
727
+ "DescribeTableStatistics": [
728
+ {
729
+ "input": {
730
+ "Marker": "",
731
+ "MaxRecords": 123,
732
+ "ReplicationTaskArn": ""
733
+ },
734
+ "output": {
735
+ "Marker": "",
736
+ "ReplicationTaskArn": "",
737
+ "TableStatistics": [
738
+
739
+ ]
740
+ },
741
+ "comments": {
742
+ "input": {
743
+ },
744
+ "output": {
745
+ }
746
+ },
747
+ "description": "Returns table statistics on the database migration task, including table name, rows inserted, rows updated, and rows deleted.",
748
+ "id": "describe-table-statistics-1481756071890",
749
+ "title": "Describe table statistics"
750
+ }
751
+ ],
752
+ "ImportCertificate": [
753
+ {
754
+ "input": {
755
+ "CertificateIdentifier": "",
756
+ "CertificatePem": ""
757
+ },
758
+ "output": {
759
+ "Certificate": {
760
+ }
761
+ },
762
+ "comments": {
763
+ "input": {
764
+ },
765
+ "output": {
766
+ }
767
+ },
768
+ "description": "Uploads the specified certificate.",
769
+ "id": "import-certificate-1481756197206",
770
+ "title": "Import certificate"
771
+ }
772
+ ],
773
+ "ListTagsForResource": [
774
+ {
775
+ "input": {
776
+ "ResourceArn": ""
777
+ },
778
+ "output": {
779
+ "TagList": [
780
+
781
+ ]
782
+ },
783
+ "comments": {
784
+ "input": {
785
+ },
786
+ "output": {
787
+ }
788
+ },
789
+ "description": "Lists all tags for an AWS DMS resource.",
790
+ "id": "list-tags-for-resource-1481761095501",
791
+ "title": "List tags for resource"
792
+ }
793
+ ],
794
+ "ModifyEndpoint": [
795
+ {
796
+ "input": {
797
+ "CertificateArn": "",
798
+ "DatabaseName": "",
799
+ "EndpointArn": "",
800
+ "EndpointIdentifier": "",
801
+ "EndpointType": "source",
802
+ "EngineName": "",
803
+ "ExtraConnectionAttributes": "",
804
+ "Password": "",
805
+ "Port": 123,
806
+ "ServerName": "",
807
+ "SslMode": "require",
808
+ "Username": ""
809
+ },
810
+ "output": {
811
+ "Endpoint": {
812
+ }
813
+ },
814
+ "comments": {
815
+ "input": {
816
+ },
817
+ "output": {
818
+ }
819
+ },
820
+ "description": "Modifies the specified endpoint.",
821
+ "id": "modify-endpoint-1481761649937",
822
+ "title": "Modify endpoint"
823
+ }
824
+ ],
825
+ "ModifyReplicationInstance": [
826
+ {
827
+ "input": {
828
+ "AllocatedStorage": 123,
829
+ "AllowMajorVersionUpgrade": true,
830
+ "ApplyImmediately": true,
831
+ "AutoMinorVersionUpgrade": true,
832
+ "EngineVersion": "1.5.0",
833
+ "MultiAZ": true,
834
+ "PreferredMaintenanceWindow": "sun:06:00-sun:14:00",
835
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
836
+ "ReplicationInstanceClass": "dms.t2.micro",
837
+ "ReplicationInstanceIdentifier": "test-rep-1",
838
+ "VpcSecurityGroupIds": [
839
+
840
+ ]
841
+ },
842
+ "output": {
843
+ "ReplicationInstance": {
844
+ "AllocatedStorage": 5,
845
+ "AutoMinorVersionUpgrade": true,
846
+ "EngineVersion": "1.5.0",
847
+ "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd",
848
+ "PendingModifiedValues": {
849
+ },
850
+ "PreferredMaintenanceWindow": "sun:06:00-sun:14:00",
851
+ "PubliclyAccessible": true,
852
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
853
+ "ReplicationInstanceClass": "dms.t2.micro",
854
+ "ReplicationInstanceIdentifier": "test-rep-1",
855
+ "ReplicationInstanceStatus": "available",
856
+ "ReplicationSubnetGroup": {
857
+ "ReplicationSubnetGroupDescription": "default",
858
+ "ReplicationSubnetGroupIdentifier": "default",
859
+ "SubnetGroupStatus": "Complete",
860
+ "Subnets": [
861
+ {
862
+ "SubnetAvailabilityZone": {
863
+ "Name": "us-east-1d"
864
+ },
865
+ "SubnetIdentifier": "subnet-f6dd91af",
866
+ "SubnetStatus": "Active"
867
+ },
868
+ {
869
+ "SubnetAvailabilityZone": {
870
+ "Name": "us-east-1b"
871
+ },
872
+ "SubnetIdentifier": "subnet-3605751d",
873
+ "SubnetStatus": "Active"
874
+ },
875
+ {
876
+ "SubnetAvailabilityZone": {
877
+ "Name": "us-east-1c"
878
+ },
879
+ "SubnetIdentifier": "subnet-c2daefb5",
880
+ "SubnetStatus": "Active"
881
+ },
882
+ {
883
+ "SubnetAvailabilityZone": {
884
+ "Name": "us-east-1e"
885
+ },
886
+ "SubnetIdentifier": "subnet-85e90cb8",
887
+ "SubnetStatus": "Active"
888
+ }
889
+ ],
890
+ "VpcId": "vpc-6741a603"
891
+ }
892
+ }
893
+ },
894
+ "comments": {
895
+ "output": {
896
+ }
897
+ },
898
+ "description": "Modifies the replication instance to apply new settings. You can change one or more parameters by specifying these parameters and the new values in the request. Some settings are applied during the maintenance window.",
899
+ "id": "modify-replication-instance-1481761784746",
900
+ "title": "Modify replication instance"
901
+ }
902
+ ],
903
+ "ModifyReplicationSubnetGroup": [
904
+ {
905
+ "input": {
906
+ "ReplicationSubnetGroupDescription": "",
907
+ "ReplicationSubnetGroupIdentifier": "",
908
+ "SubnetIds": [
909
+
910
+ ]
911
+ },
912
+ "output": {
913
+ "ReplicationSubnetGroup": {
914
+ }
915
+ },
916
+ "comments": {
917
+ "input": {
918
+ },
919
+ "output": {
920
+ }
921
+ },
922
+ "description": "Modifies the settings for the specified replication subnet group.",
923
+ "id": "modify-replication-subnet-group-1481762275392",
924
+ "title": "Modify replication subnet group"
925
+ }
926
+ ],
927
+ "RefreshSchemas": [
928
+ {
929
+ "input": {
930
+ "EndpointArn": "",
931
+ "ReplicationInstanceArn": ""
932
+ },
933
+ "output": {
934
+ "RefreshSchemasStatus": {
935
+ }
936
+ },
937
+ "comments": {
938
+ "input": {
939
+ },
940
+ "output": {
941
+ }
942
+ },
943
+ "description": "Populates the schema for the specified endpoint. This is an asynchronous operation and can take several minutes. You can check the status of this operation by calling the describe-refresh-schemas-status operation.",
944
+ "id": "refresh-schema-1481762399111",
945
+ "title": "Refresh schema"
946
+ }
947
+ ],
948
+ "RemoveTagsFromResource": [
949
+ {
950
+ "input": {
951
+ "ResourceArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E",
952
+ "TagKeys": [
953
+
954
+ ]
955
+ },
956
+ "output": {
957
+ },
958
+ "comments": {
959
+ "input": {
960
+ },
961
+ "output": {
962
+ }
963
+ },
964
+ "description": "Removes metadata tags from an AWS DMS resource.",
965
+ "id": "remove-tags-from-resource-1481762571330",
966
+ "title": "Remove tags from resource"
967
+ }
968
+ ],
969
+ "StartReplicationTask": [
970
+ {
971
+ "input": {
972
+ "CdcStartTime": "2016-12-14T13:33:20Z",
973
+ "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
974
+ "StartReplicationTaskType": "start-replication"
975
+ },
976
+ "output": {
977
+ "ReplicationTask": {
978
+ "MigrationType": "full-load",
979
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
980
+ "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM",
981
+ "ReplicationTaskCreationDate": "2016-12-14T18:25:43Z",
982
+ "ReplicationTaskIdentifier": "task1",
983
+ "ReplicationTaskSettings": "{\"TargetMetadata\":{\"TargetSchema\":\"\",\"SupportLobs\":true,\"FullLobMode\":true,\"LobChunkSize\":64,\"LimitedSizeLobMode\":false,\"LobMaxSize\":0},\"FullLoadSettings\":{\"FullLoadEnabled\":true,\"ApplyChangesEnabled\":false,\"TargetTablePrepMode\":\"DROP_AND_CREATE\",\"CreatePkAfterFullLoad\":false,\"StopTaskCachedChangesApplied\":false,\"StopTaskCachedChangesNotApplied\":false,\"ResumeEnabled\":false,\"ResumeMinTableSize\":100000,\"ResumeOnlyClusteredPKTables\":true,\"MaxFullLoadSubTasks\":8,\"TransactionConsistencyTimeout\":600,\"CommitRate\":10000},\"Logging\":{\"EnableLogging\":false}}",
984
+ "SourceEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE",
985
+ "Status": "creating",
986
+ "TableMappings": "file://mappingfile.json",
987
+ "TargetEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E"
988
+ }
989
+ },
990
+ "comments": {
991
+ "input": {
992
+ },
993
+ "output": {
994
+ }
995
+ },
996
+ "description": "Starts the replication task.",
997
+ "id": "start-replication-task-1481762706778",
998
+ "title": "Start replication task"
999
+ }
1000
+ ],
1001
+ "StopReplicationTask": [
1002
+ {
1003
+ "input": {
1004
+ "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E"
1005
+ },
1006
+ "output": {
1007
+ "ReplicationTask": {
1008
+ "MigrationType": "full-load",
1009
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
1010
+ "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM",
1011
+ "ReplicationTaskCreationDate": "2016-12-14T18:25:43Z",
1012
+ "ReplicationTaskIdentifier": "task1",
1013
+ "ReplicationTaskSettings": "{\"TargetMetadata\":{\"TargetSchema\":\"\",\"SupportLobs\":true,\"FullLobMode\":true,\"LobChunkSize\":64,\"LimitedSizeLobMode\":false,\"LobMaxSize\":0},\"FullLoadSettings\":{\"FullLoadEnabled\":true,\"ApplyChangesEnabled\":false,\"TargetTablePrepMode\":\"DROP_AND_CREATE\",\"CreatePkAfterFullLoad\":false,\"StopTaskCachedChangesApplied\":false,\"StopTaskCachedChangesNotApplied\":false,\"ResumeEnabled\":false,\"ResumeMinTableSize\":100000,\"ResumeOnlyClusteredPKTables\":true,\"MaxFullLoadSubTasks\":8,\"TransactionConsistencyTimeout\":600,\"CommitRate\":10000},\"Logging\":{\"EnableLogging\":false}}",
1014
+ "SourceEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE",
1015
+ "Status": "creating",
1016
+ "TableMappings": "file://mappingfile.json",
1017
+ "TargetEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E"
1018
+ }
1019
+ },
1020
+ "comments": {
1021
+ "input": {
1022
+ },
1023
+ "output": {
1024
+ }
1025
+ },
1026
+ "description": "Stops the replication task.",
1027
+ "id": "stop-replication-task-1481762924947",
1028
+ "title": "Stop replication task"
1029
+ }
1030
+ ],
1031
+ "TestConnection": [
1032
+ {
1033
+ "input": {
1034
+ "EndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM",
1035
+ "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ"
1036
+ },
1037
+ "output": {
1038
+ "Connection": {
1039
+ }
1040
+ },
1041
+ "comments": {
1042
+ "input": {
1043
+ },
1044
+ "output": {
1045
+ }
1046
+ },
1047
+ "description": "Tests the connection between the replication instance and the endpoint.",
1048
+ "id": "test-conection-1481763017636",
1049
+ "title": "Test conection"
1050
+ }
1051
+ ]
4
1052
  }
5
1053
  }