aws-sdk-databasemigrationservice 1.0.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing for info on making contributions:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
@@ -0,0 +1,23 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing for info on making contributions:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module DatabaseMigrationService
10
+ module Errors
11
+
12
+ extend Aws::Errors::DynamicErrors
13
+
14
+ # Raised when calling #load or #data on a resource class that can not be
15
+ # loaded. This can happen when:
16
+ #
17
+ # * A resource class has identifiers, but no data attributes.
18
+ # * Resource data is only available when making an API call that
19
+ # enumerates all resources of that type.
20
+ class ResourceNotLoadable < RuntimeError; end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,25 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing for info on making contributions:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module DatabaseMigrationService
10
+ class Resource
11
+
12
+ # @param options ({})
13
+ # @option options [Client] :client
14
+ def initialize(options = {})
15
+ @client = options[:client] || Client.new(options)
16
+ end
17
+
18
+ # @return [Client]
19
+ def client
20
+ @client
21
+ end
22
+
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,2292 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing for info on making contributions:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module DatabaseMigrationService
10
+ module Types
11
+
12
+ # Describes a quota for an AWS account, for example, the number of
13
+ # replication instances allowed.
14
+ # @!attribute [rw] account_quota_name
15
+ # The name of the AWS DMS quota for this AWS account.
16
+ # @return [String]
17
+ #
18
+ # @!attribute [rw] used
19
+ # The amount currently used toward the quota maximum.
20
+ # @return [Integer]
21
+ #
22
+ # @!attribute [rw] max
23
+ # The maximum allowed value for the quota.
24
+ # @return [Integer]
25
+ class AccountQuota < Struct.new(
26
+ :account_quota_name,
27
+ :used,
28
+ :max)
29
+ include Aws::Structure
30
+ end
31
+
32
+ # @note When making an API call, pass AddTagsToResourceMessage
33
+ # data as a hash:
34
+ #
35
+ # {
36
+ # resource_arn: "String", # required
37
+ # tags: [ # required
38
+ # {
39
+ # key: "String",
40
+ # value: "String",
41
+ # },
42
+ # ],
43
+ # }
44
+ # @!attribute [rw] resource_arn
45
+ # The Amazon Resource Name (ARN) of the AWS DMS resource the tag is to
46
+ # be added to. AWS DMS resources include a replication instance,
47
+ # endpoint, and a replication task.
48
+ # @return [String]
49
+ #
50
+ # @!attribute [rw] tags
51
+ # The tag to be assigned to the DMS resource.
52
+ # @return [Array<Types::Tag>]
53
+ class AddTagsToResourceMessage < Struct.new(
54
+ :resource_arn,
55
+ :tags)
56
+ include Aws::Structure
57
+ end
58
+
59
+ class AddTagsToResourceResponse < Aws::EmptyStructure; end
60
+
61
+ # @!attribute [rw] name
62
+ # The name of the availability zone.
63
+ # @return [String]
64
+ class AvailabilityZone < Struct.new(
65
+ :name)
66
+ include Aws::Structure
67
+ end
68
+
69
+ # The SSL certificate that can be used to encrypt connections between
70
+ # the endpoints and the replication instance.
71
+ # @!attribute [rw] certificate_identifier
72
+ # The customer-assigned name of the certificate. Valid characters are
73
+ # \[A-z\_0-9\].
74
+ # @return [String]
75
+ #
76
+ # @!attribute [rw] certificate_creation_date
77
+ # the date the certificate was created.
78
+ # @return [Time]
79
+ #
80
+ # @!attribute [rw] certificate_pem
81
+ # The contents of the .pem X.509 certificate file.
82
+ # @return [String]
83
+ #
84
+ # @!attribute [rw] certificate_arn
85
+ # The Amazon Resource Name (ARN) for the certificate.
86
+ # @return [String]
87
+ #
88
+ # @!attribute [rw] certificate_owner
89
+ # The owner of the certificate.
90
+ # @return [String]
91
+ #
92
+ # @!attribute [rw] valid_from_date
93
+ # The beginning date the certificate is valid.
94
+ # @return [Time]
95
+ #
96
+ # @!attribute [rw] valid_to_date
97
+ # the final date the certificate is valid.
98
+ # @return [Time]
99
+ #
100
+ # @!attribute [rw] signing_algorithm
101
+ # The signing algorithm for the certificate.
102
+ # @return [String]
103
+ #
104
+ # @!attribute [rw] key_length
105
+ # The key length of the cryptographic algorithm being used.
106
+ # @return [Integer]
107
+ class Certificate < Struct.new(
108
+ :certificate_identifier,
109
+ :certificate_creation_date,
110
+ :certificate_pem,
111
+ :certificate_arn,
112
+ :certificate_owner,
113
+ :valid_from_date,
114
+ :valid_to_date,
115
+ :signing_algorithm,
116
+ :key_length)
117
+ include Aws::Structure
118
+ end
119
+
120
+ # @!attribute [rw] replication_instance_arn
121
+ # The Amazon Resource Name (ARN) of the replication instance.
122
+ # @return [String]
123
+ #
124
+ # @!attribute [rw] endpoint_arn
125
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
126
+ # endpoint.
127
+ # @return [String]
128
+ #
129
+ # @!attribute [rw] status
130
+ # The connection status.
131
+ # @return [String]
132
+ #
133
+ # @!attribute [rw] last_failure_message
134
+ # The error message when the connection last failed.
135
+ # @return [String]
136
+ #
137
+ # @!attribute [rw] endpoint_identifier
138
+ # The identifier of the endpoint. Identifiers must begin with a
139
+ # letter; must contain only ASCII letters, digits, and hyphens; and
140
+ # must not end with a hyphen or contain two consecutive hyphens.
141
+ # @return [String]
142
+ #
143
+ # @!attribute [rw] replication_instance_identifier
144
+ # The replication instance identifier. This parameter is stored as a
145
+ # lowercase string.
146
+ # @return [String]
147
+ class Connection < Struct.new(
148
+ :replication_instance_arn,
149
+ :endpoint_arn,
150
+ :status,
151
+ :last_failure_message,
152
+ :endpoint_identifier,
153
+ :replication_instance_identifier)
154
+ include Aws::Structure
155
+ end
156
+
157
+ # @note When making an API call, pass CreateEndpointMessage
158
+ # data as a hash:
159
+ #
160
+ # {
161
+ # endpoint_identifier: "String", # required
162
+ # endpoint_type: "source", # required, accepts source, target
163
+ # engine_name: "String", # required
164
+ # username: "String", # required
165
+ # password: "SecretString", # required
166
+ # server_name: "String", # required
167
+ # port: 1, # required
168
+ # database_name: "String",
169
+ # extra_connection_attributes: "String",
170
+ # kms_key_id: "String",
171
+ # tags: [
172
+ # {
173
+ # key: "String",
174
+ # value: "String",
175
+ # },
176
+ # ],
177
+ # certificate_arn: "String",
178
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
179
+ # }
180
+ # @!attribute [rw] endpoint_identifier
181
+ # The database endpoint identifier. Identifiers must begin with a
182
+ # letter; must contain only ASCII letters, digits, and hyphens; and
183
+ # must not end with a hyphen or contain two consecutive hyphens.
184
+ # @return [String]
185
+ #
186
+ # @!attribute [rw] endpoint_type
187
+ # The type of endpoint.
188
+ # @return [String]
189
+ #
190
+ # @!attribute [rw] engine_name
191
+ # The type of engine for the endpoint. Valid values include MYSQL,
192
+ # ORACLE, POSTGRES, MARIADB, AURORA, REDSHIFT, and SQLSERVER.
193
+ # @return [String]
194
+ #
195
+ # @!attribute [rw] username
196
+ # The user name to be used to login to the endpoint database.
197
+ # @return [String]
198
+ #
199
+ # @!attribute [rw] password
200
+ # The password to be used to login to the endpoint database.
201
+ # @return [String]
202
+ #
203
+ # @!attribute [rw] server_name
204
+ # The name of the server where the endpoint database resides.
205
+ # @return [String]
206
+ #
207
+ # @!attribute [rw] port
208
+ # The port used by the endpoint database.
209
+ # @return [Integer]
210
+ #
211
+ # @!attribute [rw] database_name
212
+ # The name of the endpoint database.
213
+ # @return [String]
214
+ #
215
+ # @!attribute [rw] extra_connection_attributes
216
+ # Additional attributes associated with the connection.
217
+ # @return [String]
218
+ #
219
+ # @!attribute [rw] kms_key_id
220
+ # The KMS key identifier that will be used to encrypt the connection
221
+ # parameters. If you do not specify a value for the KmsKeyId
222
+ # parameter, then AWS DMS will use your default encryption key. AWS
223
+ # KMS creates the default encryption key for your AWS account. Your
224
+ # AWS account has a different default encryption key for each AWS
225
+ # region.
226
+ # @return [String]
227
+ #
228
+ # @!attribute [rw] tags
229
+ # Tags to be added to the endpoint.
230
+ # @return [Array<Types::Tag>]
231
+ #
232
+ # @!attribute [rw] certificate_arn
233
+ # The Amazon Resource Number (ARN) for the certificate.
234
+ # @return [String]
235
+ #
236
+ # @!attribute [rw] ssl_mode
237
+ # The SSL mode to use for the SSL connection.
238
+ #
239
+ # SSL mode can be one of four values: none, require, verify-ca,
240
+ # verify-full.
241
+ #
242
+ # The default value is none.
243
+ # @return [String]
244
+ class CreateEndpointMessage < Struct.new(
245
+ :endpoint_identifier,
246
+ :endpoint_type,
247
+ :engine_name,
248
+ :username,
249
+ :password,
250
+ :server_name,
251
+ :port,
252
+ :database_name,
253
+ :extra_connection_attributes,
254
+ :kms_key_id,
255
+ :tags,
256
+ :certificate_arn,
257
+ :ssl_mode)
258
+ include Aws::Structure
259
+ end
260
+
261
+ # @!attribute [rw] endpoint
262
+ # The endpoint that was created.
263
+ # @return [Types::Endpoint]
264
+ class CreateEndpointResponse < Struct.new(
265
+ :endpoint)
266
+ include Aws::Structure
267
+ end
268
+
269
+ # @note When making an API call, pass CreateReplicationInstanceMessage
270
+ # data as a hash:
271
+ #
272
+ # {
273
+ # replication_instance_identifier: "String", # required
274
+ # allocated_storage: 1,
275
+ # replication_instance_class: "String", # required
276
+ # vpc_security_group_ids: ["String"],
277
+ # availability_zone: "String",
278
+ # replication_subnet_group_identifier: "String",
279
+ # preferred_maintenance_window: "String",
280
+ # multi_az: false,
281
+ # engine_version: "String",
282
+ # auto_minor_version_upgrade: false,
283
+ # tags: [
284
+ # {
285
+ # key: "String",
286
+ # value: "String",
287
+ # },
288
+ # ],
289
+ # kms_key_id: "String",
290
+ # publicly_accessible: false,
291
+ # }
292
+ # @!attribute [rw] replication_instance_identifier
293
+ # The replication instance identifier. This parameter is stored as a
294
+ # lowercase string.
295
+ #
296
+ # Constraints:
297
+ #
298
+ # * Must contain from 1 to 63 alphanumeric characters or hyphens.
299
+ #
300
+ # * First character must be a letter.
301
+ #
302
+ # * Cannot end with a hyphen or contain two consecutive hyphens.
303
+ #
304
+ # Example: `myrepinstance`
305
+ # @return [String]
306
+ #
307
+ # @!attribute [rw] allocated_storage
308
+ # The amount of storage (in gigabytes) to be initially allocated for
309
+ # the replication instance.
310
+ # @return [Integer]
311
+ #
312
+ # @!attribute [rw] replication_instance_class
313
+ # The compute and memory capacity of the replication instance as
314
+ # specified by the replication instance class.
315
+ #
316
+ # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
317
+ # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
318
+ # dms.c4.4xlarge `
319
+ # @return [String]
320
+ #
321
+ # @!attribute [rw] vpc_security_group_ids
322
+ # Specifies the VPC security group to be used with the replication
323
+ # instance. The VPC security group must work with the VPC containing
324
+ # the replication instance.
325
+ # @return [Array<String>]
326
+ #
327
+ # @!attribute [rw] availability_zone
328
+ # The EC2 Availability Zone that the replication instance will be
329
+ # created in.
330
+ #
331
+ # Default: A random, system-chosen Availability Zone in the
332
+ # endpoint's region.
333
+ #
334
+ # Example: `us-east-1d`
335
+ # @return [String]
336
+ #
337
+ # @!attribute [rw] replication_subnet_group_identifier
338
+ # A subnet group to associate with the replication instance.
339
+ # @return [String]
340
+ #
341
+ # @!attribute [rw] preferred_maintenance_window
342
+ # The weekly time range during which system maintenance can occur, in
343
+ # Universal Coordinated Time (UTC).
344
+ #
345
+ # Format: `ddd:hh24:mi-ddd:hh24:mi`
346
+ #
347
+ # Default: A 30-minute window selected at random from an 8-hour block
348
+ # of time per region, occurring on a random day of the week.
349
+ #
350
+ # Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
351
+ #
352
+ # Constraints: Minimum 30-minute window.
353
+ # @return [String]
354
+ #
355
+ # @!attribute [rw] multi_az
356
+ # Specifies if the replication instance is a Multi-AZ deployment. You
357
+ # cannot set the `AvailabilityZone` parameter if the Multi-AZ
358
+ # parameter is set to `true`.
359
+ # @return [Boolean]
360
+ #
361
+ # @!attribute [rw] engine_version
362
+ # The engine version number of the replication instance.
363
+ # @return [String]
364
+ #
365
+ # @!attribute [rw] auto_minor_version_upgrade
366
+ # Indicates that minor engine upgrades will be applied automatically
367
+ # to the replication instance during the maintenance window.
368
+ #
369
+ # Default: `true`
370
+ # @return [Boolean]
371
+ #
372
+ # @!attribute [rw] tags
373
+ # Tags to be associated with the replication instance.
374
+ # @return [Array<Types::Tag>]
375
+ #
376
+ # @!attribute [rw] kms_key_id
377
+ # The KMS key identifier that will be used to encrypt the content on
378
+ # the replication instance. If you do not specify a value for the
379
+ # KmsKeyId parameter, then AWS DMS will use your default encryption
380
+ # key. AWS KMS creates the default encryption key for your AWS
381
+ # account. Your AWS account has a different default encryption key for
382
+ # each AWS region.
383
+ # @return [String]
384
+ #
385
+ # @!attribute [rw] publicly_accessible
386
+ # Specifies the accessibility options for the replication instance. A
387
+ # value of `true` represents an instance with a public IP address. A
388
+ # value of `false` represents an instance with a private IP address.
389
+ # The default value is `true`.
390
+ # @return [Boolean]
391
+ class CreateReplicationInstanceMessage < Struct.new(
392
+ :replication_instance_identifier,
393
+ :allocated_storage,
394
+ :replication_instance_class,
395
+ :vpc_security_group_ids,
396
+ :availability_zone,
397
+ :replication_subnet_group_identifier,
398
+ :preferred_maintenance_window,
399
+ :multi_az,
400
+ :engine_version,
401
+ :auto_minor_version_upgrade,
402
+ :tags,
403
+ :kms_key_id,
404
+ :publicly_accessible)
405
+ include Aws::Structure
406
+ end
407
+
408
+ # @!attribute [rw] replication_instance
409
+ # The replication instance that was created.
410
+ # @return [Types::ReplicationInstance]
411
+ class CreateReplicationInstanceResponse < Struct.new(
412
+ :replication_instance)
413
+ include Aws::Structure
414
+ end
415
+
416
+ # @note When making an API call, pass CreateReplicationSubnetGroupMessage
417
+ # data as a hash:
418
+ #
419
+ # {
420
+ # replication_subnet_group_identifier: "String", # required
421
+ # replication_subnet_group_description: "String", # required
422
+ # subnet_ids: ["String"], # required
423
+ # tags: [
424
+ # {
425
+ # key: "String",
426
+ # value: "String",
427
+ # },
428
+ # ],
429
+ # }
430
+ # @!attribute [rw] replication_subnet_group_identifier
431
+ # The name for the replication subnet group. This value is stored as a
432
+ # lowercase string.
433
+ #
434
+ # Constraints: Must contain no more than 255 alphanumeric characters,
435
+ # periods, spaces, underscores, or hyphens. Must not be "default".
436
+ #
437
+ # Example: `mySubnetgroup`
438
+ # @return [String]
439
+ #
440
+ # @!attribute [rw] replication_subnet_group_description
441
+ # The description for the subnet group.
442
+ # @return [String]
443
+ #
444
+ # @!attribute [rw] subnet_ids
445
+ # The EC2 subnet IDs for the subnet group.
446
+ # @return [Array<String>]
447
+ #
448
+ # @!attribute [rw] tags
449
+ # The tag to be assigned to the subnet group.
450
+ # @return [Array<Types::Tag>]
451
+ class CreateReplicationSubnetGroupMessage < Struct.new(
452
+ :replication_subnet_group_identifier,
453
+ :replication_subnet_group_description,
454
+ :subnet_ids,
455
+ :tags)
456
+ include Aws::Structure
457
+ end
458
+
459
+ # @!attribute [rw] replication_subnet_group
460
+ # The replication subnet group that was created.
461
+ # @return [Types::ReplicationSubnetGroup]
462
+ class CreateReplicationSubnetGroupResponse < Struct.new(
463
+ :replication_subnet_group)
464
+ include Aws::Structure
465
+ end
466
+
467
+ # @note When making an API call, pass CreateReplicationTaskMessage
468
+ # data as a hash:
469
+ #
470
+ # {
471
+ # replication_task_identifier: "String", # required
472
+ # source_endpoint_arn: "String", # required
473
+ # target_endpoint_arn: "String", # required
474
+ # replication_instance_arn: "String", # required
475
+ # migration_type: "full-load", # required, accepts full-load, cdc, full-load-and-cdc
476
+ # table_mappings: "String", # required
477
+ # replication_task_settings: "String",
478
+ # cdc_start_time: Time.now,
479
+ # tags: [
480
+ # {
481
+ # key: "String",
482
+ # value: "String",
483
+ # },
484
+ # ],
485
+ # }
486
+ # @!attribute [rw] replication_task_identifier
487
+ # The replication task identifier.
488
+ #
489
+ # Constraints:
490
+ #
491
+ # * Must contain from 1 to 63 alphanumeric characters or hyphens.
492
+ #
493
+ # * First character must be a letter.
494
+ #
495
+ # * Cannot end with a hyphen or contain two consecutive hyphens.
496
+ # @return [String]
497
+ #
498
+ # @!attribute [rw] source_endpoint_arn
499
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
500
+ # endpoint.
501
+ # @return [String]
502
+ #
503
+ # @!attribute [rw] target_endpoint_arn
504
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
505
+ # endpoint.
506
+ # @return [String]
507
+ #
508
+ # @!attribute [rw] replication_instance_arn
509
+ # The Amazon Resource Name (ARN) of the replication instance.
510
+ # @return [String]
511
+ #
512
+ # @!attribute [rw] migration_type
513
+ # The migration type.
514
+ # @return [String]
515
+ #
516
+ # @!attribute [rw] table_mappings
517
+ # The path of the JSON file that contains the table mappings. Preceed
518
+ # the path with "file://".
519
+ #
520
+ # For example, --table-mappings file://mappingfile.json
521
+ # @return [String]
522
+ #
523
+ # @!attribute [rw] replication_task_settings
524
+ # Settings for the task, such as target metadata settings.
525
+ # @return [String]
526
+ #
527
+ # @!attribute [rw] cdc_start_time
528
+ # The start time for the Change Data Capture (CDC) operation.
529
+ # @return [Time]
530
+ #
531
+ # @!attribute [rw] tags
532
+ # Tags to be added to the replication instance.
533
+ # @return [Array<Types::Tag>]
534
+ class CreateReplicationTaskMessage < Struct.new(
535
+ :replication_task_identifier,
536
+ :source_endpoint_arn,
537
+ :target_endpoint_arn,
538
+ :replication_instance_arn,
539
+ :migration_type,
540
+ :table_mappings,
541
+ :replication_task_settings,
542
+ :cdc_start_time,
543
+ :tags)
544
+ include Aws::Structure
545
+ end
546
+
547
+ # @!attribute [rw] replication_task
548
+ # The replication task that was created.
549
+ # @return [Types::ReplicationTask]
550
+ class CreateReplicationTaskResponse < Struct.new(
551
+ :replication_task)
552
+ include Aws::Structure
553
+ end
554
+
555
+ # @note When making an API call, pass DeleteCertificateMessage
556
+ # data as a hash:
557
+ #
558
+ # {
559
+ # certificate_arn: "String", # required
560
+ # }
561
+ # @!attribute [rw] certificate_arn
562
+ # the Amazon Resource Name (ARN) of the deleted certificate.
563
+ # @return [String]
564
+ class DeleteCertificateMessage < Struct.new(
565
+ :certificate_arn)
566
+ include Aws::Structure
567
+ end
568
+
569
+ # @!attribute [rw] certificate
570
+ # The SSL certificate.
571
+ # @return [Types::Certificate]
572
+ class DeleteCertificateResponse < Struct.new(
573
+ :certificate)
574
+ include Aws::Structure
575
+ end
576
+
577
+ # @note When making an API call, pass DeleteEndpointMessage
578
+ # data as a hash:
579
+ #
580
+ # {
581
+ # endpoint_arn: "String", # required
582
+ # }
583
+ # @!attribute [rw] endpoint_arn
584
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
585
+ # endpoint.
586
+ # @return [String]
587
+ class DeleteEndpointMessage < Struct.new(
588
+ :endpoint_arn)
589
+ include Aws::Structure
590
+ end
591
+
592
+ # @!attribute [rw] endpoint
593
+ # The endpoint that was deleted.
594
+ # @return [Types::Endpoint]
595
+ class DeleteEndpointResponse < Struct.new(
596
+ :endpoint)
597
+ include Aws::Structure
598
+ end
599
+
600
+ # @note When making an API call, pass DeleteReplicationInstanceMessage
601
+ # data as a hash:
602
+ #
603
+ # {
604
+ # replication_instance_arn: "String", # required
605
+ # }
606
+ # @!attribute [rw] replication_instance_arn
607
+ # The Amazon Resource Name (ARN) of the replication instance to be
608
+ # deleted.
609
+ # @return [String]
610
+ class DeleteReplicationInstanceMessage < Struct.new(
611
+ :replication_instance_arn)
612
+ include Aws::Structure
613
+ end
614
+
615
+ # @!attribute [rw] replication_instance
616
+ # The replication instance that was deleted.
617
+ # @return [Types::ReplicationInstance]
618
+ class DeleteReplicationInstanceResponse < Struct.new(
619
+ :replication_instance)
620
+ include Aws::Structure
621
+ end
622
+
623
+ # @note When making an API call, pass DeleteReplicationSubnetGroupMessage
624
+ # data as a hash:
625
+ #
626
+ # {
627
+ # replication_subnet_group_identifier: "String", # required
628
+ # }
629
+ # @!attribute [rw] replication_subnet_group_identifier
630
+ # The subnet group name of the replication instance.
631
+ # @return [String]
632
+ class DeleteReplicationSubnetGroupMessage < Struct.new(
633
+ :replication_subnet_group_identifier)
634
+ include Aws::Structure
635
+ end
636
+
637
+ class DeleteReplicationSubnetGroupResponse < Aws::EmptyStructure; end
638
+
639
+ # @note When making an API call, pass DeleteReplicationTaskMessage
640
+ # data as a hash:
641
+ #
642
+ # {
643
+ # replication_task_arn: "String", # required
644
+ # }
645
+ # @!attribute [rw] replication_task_arn
646
+ # The Amazon Resource Name (ARN) of the replication task to be
647
+ # deleted.
648
+ # @return [String]
649
+ class DeleteReplicationTaskMessage < Struct.new(
650
+ :replication_task_arn)
651
+ include Aws::Structure
652
+ end
653
+
654
+ # @!attribute [rw] replication_task
655
+ # The deleted replication task.
656
+ # @return [Types::ReplicationTask]
657
+ class DeleteReplicationTaskResponse < Struct.new(
658
+ :replication_task)
659
+ include Aws::Structure
660
+ end
661
+
662
+ # @api private
663
+ class DescribeAccountAttributesMessage < Aws::EmptyStructure; end
664
+
665
+ # @!attribute [rw] account_quotas
666
+ # Account quota information.
667
+ # @return [Array<Types::AccountQuota>]
668
+ class DescribeAccountAttributesResponse < Struct.new(
669
+ :account_quotas)
670
+ include Aws::Structure
671
+ end
672
+
673
+ # @note When making an API call, pass DescribeCertificatesMessage
674
+ # data as a hash:
675
+ #
676
+ # {
677
+ # filters: [
678
+ # {
679
+ # name: "String", # required
680
+ # values: ["String"], # required
681
+ # },
682
+ # ],
683
+ # max_records: 1,
684
+ # marker: "String",
685
+ # }
686
+ # @!attribute [rw] filters
687
+ # Filters applied to the certificate described in the form of
688
+ # key-value pairs.
689
+ # @return [Array<Types::Filter>]
690
+ #
691
+ # @!attribute [rw] max_records
692
+ # The maximum number of records to include in the response. If more
693
+ # records exist than the specified `MaxRecords` value, a pagination
694
+ # token called a marker is included in the response so that the
695
+ # remaining results can be retrieved.
696
+ #
697
+ # Default: 10
698
+ # @return [Integer]
699
+ #
700
+ # @!attribute [rw] marker
701
+ # An optional pagination token provided by a previous request. If this
702
+ # parameter is specified, the response includes only records beyond
703
+ # the marker, up to the value specified by `MaxRecords`.
704
+ # @return [String]
705
+ class DescribeCertificatesMessage < Struct.new(
706
+ :filters,
707
+ :max_records,
708
+ :marker)
709
+ include Aws::Structure
710
+ end
711
+
712
+ # @!attribute [rw] marker
713
+ # The pagination token.
714
+ # @return [String]
715
+ #
716
+ # @!attribute [rw] certificates
717
+ # The SSL certificates associated with the replication instance.
718
+ # @return [Array<Types::Certificate>]
719
+ class DescribeCertificatesResponse < Struct.new(
720
+ :marker,
721
+ :certificates)
722
+ include Aws::Structure
723
+ end
724
+
725
+ # @note When making an API call, pass DescribeConnectionsMessage
726
+ # data as a hash:
727
+ #
728
+ # {
729
+ # filters: [
730
+ # {
731
+ # name: "String", # required
732
+ # values: ["String"], # required
733
+ # },
734
+ # ],
735
+ # max_records: 1,
736
+ # marker: "String",
737
+ # }
738
+ # @!attribute [rw] filters
739
+ # The filters applied to the connection.
740
+ #
741
+ # Valid filter names: endpoint-arn \| replication-instance-arn
742
+ # @return [Array<Types::Filter>]
743
+ #
744
+ # @!attribute [rw] max_records
745
+ # The maximum number of records to include in the response. If more
746
+ # records exist than the specified `MaxRecords` value, a pagination
747
+ # token called a marker is included in the response so that the
748
+ # remaining results can be retrieved.
749
+ #
750
+ # Default: 100
751
+ #
752
+ # Constraints: Minimum 20, maximum 100.
753
+ # @return [Integer]
754
+ #
755
+ # @!attribute [rw] marker
756
+ # An optional pagination token provided by a previous request. If this
757
+ # parameter is specified, the response includes only records beyond
758
+ # the marker, up to the value specified by `MaxRecords`.
759
+ # @return [String]
760
+ class DescribeConnectionsMessage < Struct.new(
761
+ :filters,
762
+ :max_records,
763
+ :marker)
764
+ include Aws::Structure
765
+ end
766
+
767
+ # @!attribute [rw] marker
768
+ # An optional pagination token provided by a previous request. If this
769
+ # parameter is specified, the response includes only records beyond
770
+ # the marker, up to the value specified by `MaxRecords`.
771
+ # @return [String]
772
+ #
773
+ # @!attribute [rw] connections
774
+ # A description of the connections.
775
+ # @return [Array<Types::Connection>]
776
+ class DescribeConnectionsResponse < Struct.new(
777
+ :marker,
778
+ :connections)
779
+ include Aws::Structure
780
+ end
781
+
782
+ # @note When making an API call, pass DescribeEndpointTypesMessage
783
+ # data as a hash:
784
+ #
785
+ # {
786
+ # filters: [
787
+ # {
788
+ # name: "String", # required
789
+ # values: ["String"], # required
790
+ # },
791
+ # ],
792
+ # max_records: 1,
793
+ # marker: "String",
794
+ # }
795
+ # @!attribute [rw] filters
796
+ # Filters applied to the describe action.
797
+ #
798
+ # Valid filter names: engine-name \| endpoint-type
799
+ # @return [Array<Types::Filter>]
800
+ #
801
+ # @!attribute [rw] max_records
802
+ # The maximum number of records to include in the response. If more
803
+ # records exist than the specified `MaxRecords` value, a pagination
804
+ # token called a marker is included in the response so that the
805
+ # remaining results can be retrieved.
806
+ #
807
+ # Default: 100
808
+ #
809
+ # Constraints: Minimum 20, maximum 100.
810
+ # @return [Integer]
811
+ #
812
+ # @!attribute [rw] marker
813
+ # An optional pagination token provided by a previous request. If this
814
+ # parameter is specified, the response includes only records beyond
815
+ # the marker, up to the value specified by `MaxRecords`.
816
+ # @return [String]
817
+ class DescribeEndpointTypesMessage < Struct.new(
818
+ :filters,
819
+ :max_records,
820
+ :marker)
821
+ include Aws::Structure
822
+ end
823
+
824
+ # @!attribute [rw] marker
825
+ # An optional pagination token provided by a previous request. If this
826
+ # parameter is specified, the response includes only records beyond
827
+ # the marker, up to the value specified by `MaxRecords`.
828
+ # @return [String]
829
+ #
830
+ # @!attribute [rw] supported_endpoint_types
831
+ # The type of endpoints that are supported.
832
+ # @return [Array<Types::SupportedEndpointType>]
833
+ class DescribeEndpointTypesResponse < Struct.new(
834
+ :marker,
835
+ :supported_endpoint_types)
836
+ include Aws::Structure
837
+ end
838
+
839
+ # @note When making an API call, pass DescribeEndpointsMessage
840
+ # data as a hash:
841
+ #
842
+ # {
843
+ # filters: [
844
+ # {
845
+ # name: "String", # required
846
+ # values: ["String"], # required
847
+ # },
848
+ # ],
849
+ # max_records: 1,
850
+ # marker: "String",
851
+ # }
852
+ # @!attribute [rw] filters
853
+ # Filters applied to the describe action.
854
+ #
855
+ # Valid filter names: endpoint-arn \| endpoint-type \| endpoint-id \|
856
+ # engine-name
857
+ # @return [Array<Types::Filter>]
858
+ #
859
+ # @!attribute [rw] max_records
860
+ # The maximum number of records to include in the response. If more
861
+ # records exist than the specified `MaxRecords` value, a pagination
862
+ # token called a marker is included in the response so that the
863
+ # remaining results can be retrieved.
864
+ #
865
+ # Default: 100
866
+ #
867
+ # Constraints: Minimum 20, maximum 100.
868
+ # @return [Integer]
869
+ #
870
+ # @!attribute [rw] marker
871
+ # An optional pagination token provided by a previous request. If this
872
+ # parameter is specified, the response includes only records beyond
873
+ # the marker, up to the value specified by `MaxRecords`.
874
+ # @return [String]
875
+ class DescribeEndpointsMessage < Struct.new(
876
+ :filters,
877
+ :max_records,
878
+ :marker)
879
+ include Aws::Structure
880
+ end
881
+
882
+ # @!attribute [rw] marker
883
+ # An optional pagination token provided by a previous request. If this
884
+ # parameter is specified, the response includes only records beyond
885
+ # the marker, up to the value specified by `MaxRecords`.
886
+ # @return [String]
887
+ #
888
+ # @!attribute [rw] endpoints
889
+ # Endpoint description.
890
+ # @return [Array<Types::Endpoint>]
891
+ class DescribeEndpointsResponse < Struct.new(
892
+ :marker,
893
+ :endpoints)
894
+ include Aws::Structure
895
+ end
896
+
897
+ # @note When making an API call, pass DescribeOrderableReplicationInstancesMessage
898
+ # data as a hash:
899
+ #
900
+ # {
901
+ # max_records: 1,
902
+ # marker: "String",
903
+ # }
904
+ # @!attribute [rw] max_records
905
+ # The maximum number of records to include in the response. If more
906
+ # records exist than the specified `MaxRecords` value, a pagination
907
+ # token called a marker is included in the response so that the
908
+ # remaining results can be retrieved.
909
+ #
910
+ # Default: 100
911
+ #
912
+ # Constraints: Minimum 20, maximum 100.
913
+ # @return [Integer]
914
+ #
915
+ # @!attribute [rw] marker
916
+ # An optional pagination token provided by a previous request. If this
917
+ # parameter is specified, the response includes only records beyond
918
+ # the marker, up to the value specified by `MaxRecords`.
919
+ # @return [String]
920
+ class DescribeOrderableReplicationInstancesMessage < Struct.new(
921
+ :max_records,
922
+ :marker)
923
+ include Aws::Structure
924
+ end
925
+
926
+ # @!attribute [rw] orderable_replication_instances
927
+ # The order-able replication instances available.
928
+ # @return [Array<Types::OrderableReplicationInstance>]
929
+ #
930
+ # @!attribute [rw] marker
931
+ # An optional pagination token provided by a previous request. If this
932
+ # parameter is specified, the response includes only records beyond
933
+ # the marker, up to the value specified by `MaxRecords`.
934
+ # @return [String]
935
+ class DescribeOrderableReplicationInstancesResponse < Struct.new(
936
+ :orderable_replication_instances,
937
+ :marker)
938
+ include Aws::Structure
939
+ end
940
+
941
+ # @note When making an API call, pass DescribeRefreshSchemasStatusMessage
942
+ # data as a hash:
943
+ #
944
+ # {
945
+ # endpoint_arn: "String", # required
946
+ # }
947
+ # @!attribute [rw] endpoint_arn
948
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
949
+ # endpoint.
950
+ # @return [String]
951
+ class DescribeRefreshSchemasStatusMessage < Struct.new(
952
+ :endpoint_arn)
953
+ include Aws::Structure
954
+ end
955
+
956
+ # @!attribute [rw] refresh_schemas_status
957
+ # The status of the schema.
958
+ # @return [Types::RefreshSchemasStatus]
959
+ class DescribeRefreshSchemasStatusResponse < Struct.new(
960
+ :refresh_schemas_status)
961
+ include Aws::Structure
962
+ end
963
+
964
+ # @note When making an API call, pass DescribeReplicationInstancesMessage
965
+ # data as a hash:
966
+ #
967
+ # {
968
+ # filters: [
969
+ # {
970
+ # name: "String", # required
971
+ # values: ["String"], # required
972
+ # },
973
+ # ],
974
+ # max_records: 1,
975
+ # marker: "String",
976
+ # }
977
+ # @!attribute [rw] filters
978
+ # Filters applied to the describe action.
979
+ #
980
+ # Valid filter names: replication-instance-arn \|
981
+ # replication-instance-id \| replication-instance-class \|
982
+ # engine-version
983
+ # @return [Array<Types::Filter>]
984
+ #
985
+ # @!attribute [rw] max_records
986
+ # The maximum number of records to include in the response. If more
987
+ # records exist than the specified `MaxRecords` value, a pagination
988
+ # token called a marker is included in the response so that the
989
+ # remaining results can be retrieved.
990
+ #
991
+ # Default: 100
992
+ #
993
+ # Constraints: Minimum 20, maximum 100.
994
+ # @return [Integer]
995
+ #
996
+ # @!attribute [rw] marker
997
+ # An optional pagination token provided by a previous request. If this
998
+ # parameter is specified, the response includes only records beyond
999
+ # the marker, up to the value specified by `MaxRecords`.
1000
+ # @return [String]
1001
+ class DescribeReplicationInstancesMessage < Struct.new(
1002
+ :filters,
1003
+ :max_records,
1004
+ :marker)
1005
+ include Aws::Structure
1006
+ end
1007
+
1008
+ # @!attribute [rw] marker
1009
+ # An optional pagination token provided by a previous request. If this
1010
+ # parameter is specified, the response includes only records beyond
1011
+ # the marker, up to the value specified by `MaxRecords`.
1012
+ # @return [String]
1013
+ #
1014
+ # @!attribute [rw] replication_instances
1015
+ # The replication instances described.
1016
+ # @return [Array<Types::ReplicationInstance>]
1017
+ class DescribeReplicationInstancesResponse < Struct.new(
1018
+ :marker,
1019
+ :replication_instances)
1020
+ include Aws::Structure
1021
+ end
1022
+
1023
+ # @note When making an API call, pass DescribeReplicationSubnetGroupsMessage
1024
+ # data as a hash:
1025
+ #
1026
+ # {
1027
+ # filters: [
1028
+ # {
1029
+ # name: "String", # required
1030
+ # values: ["String"], # required
1031
+ # },
1032
+ # ],
1033
+ # max_records: 1,
1034
+ # marker: "String",
1035
+ # }
1036
+ # @!attribute [rw] filters
1037
+ # Filters applied to the describe action.
1038
+ # @return [Array<Types::Filter>]
1039
+ #
1040
+ # @!attribute [rw] max_records
1041
+ # The maximum number of records to include in the response. If more
1042
+ # records exist than the specified `MaxRecords` value, a pagination
1043
+ # token called a marker is included in the response so that the
1044
+ # remaining results can be retrieved.
1045
+ #
1046
+ # Default: 100
1047
+ #
1048
+ # Constraints: Minimum 20, maximum 100.
1049
+ # @return [Integer]
1050
+ #
1051
+ # @!attribute [rw] marker
1052
+ # An optional pagination token provided by a previous request. If this
1053
+ # parameter is specified, the response includes only records beyond
1054
+ # the marker, up to the value specified by `MaxRecords`.
1055
+ # @return [String]
1056
+ class DescribeReplicationSubnetGroupsMessage < Struct.new(
1057
+ :filters,
1058
+ :max_records,
1059
+ :marker)
1060
+ include Aws::Structure
1061
+ end
1062
+
1063
+ # @!attribute [rw] marker
1064
+ # An optional pagination token provided by a previous request. If this
1065
+ # parameter is specified, the response includes only records beyond
1066
+ # the marker, up to the value specified by `MaxRecords`.
1067
+ # @return [String]
1068
+ #
1069
+ # @!attribute [rw] replication_subnet_groups
1070
+ # A description of the replication subnet groups.
1071
+ # @return [Array<Types::ReplicationSubnetGroup>]
1072
+ class DescribeReplicationSubnetGroupsResponse < Struct.new(
1073
+ :marker,
1074
+ :replication_subnet_groups)
1075
+ include Aws::Structure
1076
+ end
1077
+
1078
+ # @note When making an API call, pass DescribeReplicationTasksMessage
1079
+ # data as a hash:
1080
+ #
1081
+ # {
1082
+ # filters: [
1083
+ # {
1084
+ # name: "String", # required
1085
+ # values: ["String"], # required
1086
+ # },
1087
+ # ],
1088
+ # max_records: 1,
1089
+ # marker: "String",
1090
+ # }
1091
+ # @!attribute [rw] filters
1092
+ # Filters applied to the describe action.
1093
+ #
1094
+ # Valid filter names: replication-task-arn \| replication-task-id \|
1095
+ # migration-type \| endpoint-arn \| replication-instance-arn
1096
+ # @return [Array<Types::Filter>]
1097
+ #
1098
+ # @!attribute [rw] max_records
1099
+ # The maximum number of records to include in the response. If more
1100
+ # records exist than the specified `MaxRecords` value, a pagination
1101
+ # token called a marker is included in the response so that the
1102
+ # remaining results can be retrieved.
1103
+ #
1104
+ # Default: 100
1105
+ #
1106
+ # Constraints: Minimum 20, maximum 100.
1107
+ # @return [Integer]
1108
+ #
1109
+ # @!attribute [rw] marker
1110
+ # An optional pagination token provided by a previous request. If this
1111
+ # parameter is specified, the response includes only records beyond
1112
+ # the marker, up to the value specified by `MaxRecords`.
1113
+ # @return [String]
1114
+ class DescribeReplicationTasksMessage < Struct.new(
1115
+ :filters,
1116
+ :max_records,
1117
+ :marker)
1118
+ include Aws::Structure
1119
+ end
1120
+
1121
+ # @!attribute [rw] marker
1122
+ # An optional pagination token provided by a previous request. If this
1123
+ # parameter is specified, the response includes only records beyond
1124
+ # the marker, up to the value specified by `MaxRecords`.
1125
+ # @return [String]
1126
+ #
1127
+ # @!attribute [rw] replication_tasks
1128
+ # A description of the replication tasks.
1129
+ # @return [Array<Types::ReplicationTask>]
1130
+ class DescribeReplicationTasksResponse < Struct.new(
1131
+ :marker,
1132
+ :replication_tasks)
1133
+ include Aws::Structure
1134
+ end
1135
+
1136
+ # @note When making an API call, pass DescribeSchemasMessage
1137
+ # data as a hash:
1138
+ #
1139
+ # {
1140
+ # endpoint_arn: "String", # required
1141
+ # max_records: 1,
1142
+ # marker: "String",
1143
+ # }
1144
+ # @!attribute [rw] endpoint_arn
1145
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
1146
+ # endpoint.
1147
+ # @return [String]
1148
+ #
1149
+ # @!attribute [rw] max_records
1150
+ # The maximum number of records to include in the response. If more
1151
+ # records exist than the specified `MaxRecords` value, a pagination
1152
+ # token called a marker is included in the response so that the
1153
+ # remaining results can be retrieved.
1154
+ #
1155
+ # Default: 100
1156
+ #
1157
+ # Constraints: Minimum 20, maximum 100.
1158
+ # @return [Integer]
1159
+ #
1160
+ # @!attribute [rw] marker
1161
+ # An optional pagination token provided by a previous request. If this
1162
+ # parameter is specified, the response includes only records beyond
1163
+ # the marker, up to the value specified by `MaxRecords`.
1164
+ # @return [String]
1165
+ class DescribeSchemasMessage < Struct.new(
1166
+ :endpoint_arn,
1167
+ :max_records,
1168
+ :marker)
1169
+ include Aws::Structure
1170
+ end
1171
+
1172
+ # @!attribute [rw] marker
1173
+ # An optional pagination token provided by a previous request. If this
1174
+ # parameter is specified, the response includes only records beyond
1175
+ # the marker, up to the value specified by `MaxRecords`.
1176
+ # @return [String]
1177
+ #
1178
+ # @!attribute [rw] schemas
1179
+ # The described schema.
1180
+ # @return [Array<String>]
1181
+ class DescribeSchemasResponse < Struct.new(
1182
+ :marker,
1183
+ :schemas)
1184
+ include Aws::Structure
1185
+ end
1186
+
1187
+ # @note When making an API call, pass DescribeTableStatisticsMessage
1188
+ # data as a hash:
1189
+ #
1190
+ # {
1191
+ # replication_task_arn: "String", # required
1192
+ # max_records: 1,
1193
+ # marker: "String",
1194
+ # }
1195
+ # @!attribute [rw] replication_task_arn
1196
+ # The Amazon Resource Name (ARN) of the replication task.
1197
+ # @return [String]
1198
+ #
1199
+ # @!attribute [rw] max_records
1200
+ # The maximum number of records to include in the response. If more
1201
+ # records exist than the specified `MaxRecords` value, a pagination
1202
+ # token called a marker is included in the response so that the
1203
+ # remaining results can be retrieved.
1204
+ #
1205
+ # Default: 100
1206
+ #
1207
+ # Constraints: Minimum 20, maximum 100.
1208
+ # @return [Integer]
1209
+ #
1210
+ # @!attribute [rw] marker
1211
+ # An optional pagination token provided by a previous request. If this
1212
+ # parameter is specified, the response includes only records beyond
1213
+ # the marker, up to the value specified by `MaxRecords`.
1214
+ # @return [String]
1215
+ class DescribeTableStatisticsMessage < Struct.new(
1216
+ :replication_task_arn,
1217
+ :max_records,
1218
+ :marker)
1219
+ include Aws::Structure
1220
+ end
1221
+
1222
+ # @!attribute [rw] replication_task_arn
1223
+ # The Amazon Resource Name (ARN) of the replication task.
1224
+ # @return [String]
1225
+ #
1226
+ # @!attribute [rw] table_statistics
1227
+ # The table statistics.
1228
+ # @return [Array<Types::TableStatistics>]
1229
+ #
1230
+ # @!attribute [rw] marker
1231
+ # An optional pagination token provided by a previous request. If this
1232
+ # parameter is specified, the response includes only records beyond
1233
+ # the marker, up to the value specified by `MaxRecords`.
1234
+ # @return [String]
1235
+ class DescribeTableStatisticsResponse < Struct.new(
1236
+ :replication_task_arn,
1237
+ :table_statistics,
1238
+ :marker)
1239
+ include Aws::Structure
1240
+ end
1241
+
1242
+ # @!attribute [rw] endpoint_identifier
1243
+ # The database endpoint identifier. Identifiers must begin with a
1244
+ # letter; must contain only ASCII letters, digits, and hyphens; and
1245
+ # must not end with a hyphen or contain two consecutive hyphens.
1246
+ # @return [String]
1247
+ #
1248
+ # @!attribute [rw] endpoint_type
1249
+ # The type of endpoint.
1250
+ # @return [String]
1251
+ #
1252
+ # @!attribute [rw] engine_name
1253
+ # The database engine name.
1254
+ # @return [String]
1255
+ #
1256
+ # @!attribute [rw] username
1257
+ # The user name used to connect to the endpoint.
1258
+ # @return [String]
1259
+ #
1260
+ # @!attribute [rw] server_name
1261
+ # The name of the server at the endpoint.
1262
+ # @return [String]
1263
+ #
1264
+ # @!attribute [rw] port
1265
+ # The port value used to access the endpoint.
1266
+ # @return [Integer]
1267
+ #
1268
+ # @!attribute [rw] database_name
1269
+ # The name of the database at the endpoint.
1270
+ # @return [String]
1271
+ #
1272
+ # @!attribute [rw] extra_connection_attributes
1273
+ # Additional connection attributes used to connect to the endpoint.
1274
+ # @return [String]
1275
+ #
1276
+ # @!attribute [rw] status
1277
+ # The status of the endpoint.
1278
+ # @return [String]
1279
+ #
1280
+ # @!attribute [rw] kms_key_id
1281
+ # The KMS key identifier that will be used to encrypt the connection
1282
+ # parameters. If you do not specify a value for the KmsKeyId
1283
+ # parameter, then AWS DMS will use your default encryption key. AWS
1284
+ # KMS creates the default encryption key for your AWS account. Your
1285
+ # AWS account has a different default encryption key for each AWS
1286
+ # region.
1287
+ # @return [String]
1288
+ #
1289
+ # @!attribute [rw] endpoint_arn
1290
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
1291
+ # endpoint.
1292
+ # @return [String]
1293
+ #
1294
+ # @!attribute [rw] certificate_arn
1295
+ # The Amazon Resource Name (ARN) used for SSL connection to the
1296
+ # endpoint.
1297
+ # @return [String]
1298
+ #
1299
+ # @!attribute [rw] ssl_mode
1300
+ # The SSL mode used to connect to the endpoint.
1301
+ #
1302
+ # SSL mode can be one of four values: none, require, verify-ca,
1303
+ # verify-full.
1304
+ #
1305
+ # The default value is none.
1306
+ # @return [String]
1307
+ class Endpoint < Struct.new(
1308
+ :endpoint_identifier,
1309
+ :endpoint_type,
1310
+ :engine_name,
1311
+ :username,
1312
+ :server_name,
1313
+ :port,
1314
+ :database_name,
1315
+ :extra_connection_attributes,
1316
+ :status,
1317
+ :kms_key_id,
1318
+ :endpoint_arn,
1319
+ :certificate_arn,
1320
+ :ssl_mode)
1321
+ include Aws::Structure
1322
+ end
1323
+
1324
+ # @note When making an API call, pass Filter
1325
+ # data as a hash:
1326
+ #
1327
+ # {
1328
+ # name: "String", # required
1329
+ # values: ["String"], # required
1330
+ # }
1331
+ # @!attribute [rw] name
1332
+ # The name of the filter.
1333
+ # @return [String]
1334
+ #
1335
+ # @!attribute [rw] values
1336
+ # The filter value.
1337
+ # @return [Array<String>]
1338
+ class Filter < Struct.new(
1339
+ :name,
1340
+ :values)
1341
+ include Aws::Structure
1342
+ end
1343
+
1344
+ # @note When making an API call, pass ImportCertificateMessage
1345
+ # data as a hash:
1346
+ #
1347
+ # {
1348
+ # certificate_identifier: "String", # required
1349
+ # certificate_pem: "String",
1350
+ # }
1351
+ # @!attribute [rw] certificate_identifier
1352
+ # The customer-assigned name of the certificate. Valid characters are
1353
+ # \[A-z\_0-9\].
1354
+ # @return [String]
1355
+ #
1356
+ # @!attribute [rw] certificate_pem
1357
+ # The contents of the .pem X.509 certificate file.
1358
+ # @return [String]
1359
+ class ImportCertificateMessage < Struct.new(
1360
+ :certificate_identifier,
1361
+ :certificate_pem)
1362
+ include Aws::Structure
1363
+ end
1364
+
1365
+ # @!attribute [rw] certificate
1366
+ # The certificate to be uploaded.
1367
+ # @return [Types::Certificate]
1368
+ class ImportCertificateResponse < Struct.new(
1369
+ :certificate)
1370
+ include Aws::Structure
1371
+ end
1372
+
1373
+ # @note When making an API call, pass ListTagsForResourceMessage
1374
+ # data as a hash:
1375
+ #
1376
+ # {
1377
+ # resource_arn: "String", # required
1378
+ # }
1379
+ # @!attribute [rw] resource_arn
1380
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
1381
+ # AWS DMS resource.
1382
+ # @return [String]
1383
+ class ListTagsForResourceMessage < Struct.new(
1384
+ :resource_arn)
1385
+ include Aws::Structure
1386
+ end
1387
+
1388
+ # @!attribute [rw] tag_list
1389
+ # A list of tags for the resource.
1390
+ # @return [Array<Types::Tag>]
1391
+ class ListTagsForResourceResponse < Struct.new(
1392
+ :tag_list)
1393
+ include Aws::Structure
1394
+ end
1395
+
1396
+ # @note When making an API call, pass ModifyEndpointMessage
1397
+ # data as a hash:
1398
+ #
1399
+ # {
1400
+ # endpoint_arn: "String", # required
1401
+ # endpoint_identifier: "String",
1402
+ # endpoint_type: "source", # accepts source, target
1403
+ # engine_name: "String",
1404
+ # username: "String",
1405
+ # password: "SecretString",
1406
+ # server_name: "String",
1407
+ # port: 1,
1408
+ # database_name: "String",
1409
+ # extra_connection_attributes: "String",
1410
+ # certificate_arn: "String",
1411
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
1412
+ # }
1413
+ # @!attribute [rw] endpoint_arn
1414
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
1415
+ # endpoint.
1416
+ # @return [String]
1417
+ #
1418
+ # @!attribute [rw] endpoint_identifier
1419
+ # The database endpoint identifier. Identifiers must begin with a
1420
+ # letter; must contain only ASCII letters, digits, and hyphens; and
1421
+ # must not end with a hyphen or contain two consecutive hyphens.
1422
+ # @return [String]
1423
+ #
1424
+ # @!attribute [rw] endpoint_type
1425
+ # The type of endpoint.
1426
+ # @return [String]
1427
+ #
1428
+ # @!attribute [rw] engine_name
1429
+ # The type of engine for the endpoint. Valid values include MYSQL,
1430
+ # ORACLE, POSTGRES, MARIADB, AURORA, REDSHIFT, and SQLSERVER.
1431
+ # @return [String]
1432
+ #
1433
+ # @!attribute [rw] username
1434
+ # The user name to be used to login to the endpoint database.
1435
+ # @return [String]
1436
+ #
1437
+ # @!attribute [rw] password
1438
+ # The password to be used to login to the endpoint database.
1439
+ # @return [String]
1440
+ #
1441
+ # @!attribute [rw] server_name
1442
+ # The name of the server where the endpoint database resides.
1443
+ # @return [String]
1444
+ #
1445
+ # @!attribute [rw] port
1446
+ # The port used by the endpoint database.
1447
+ # @return [Integer]
1448
+ #
1449
+ # @!attribute [rw] database_name
1450
+ # The name of the endpoint database.
1451
+ # @return [String]
1452
+ #
1453
+ # @!attribute [rw] extra_connection_attributes
1454
+ # Additional attributes associated with the connection.
1455
+ # @return [String]
1456
+ #
1457
+ # @!attribute [rw] certificate_arn
1458
+ # The Amazon Resource Name (ARN) of the certificate used for SSL
1459
+ # connection.
1460
+ # @return [String]
1461
+ #
1462
+ # @!attribute [rw] ssl_mode
1463
+ # The SSL mode to be used.
1464
+ #
1465
+ # SSL mode can be one of four values: none, require, verify-ca,
1466
+ # verify-full.
1467
+ #
1468
+ # The default value is none.
1469
+ # @return [String]
1470
+ class ModifyEndpointMessage < Struct.new(
1471
+ :endpoint_arn,
1472
+ :endpoint_identifier,
1473
+ :endpoint_type,
1474
+ :engine_name,
1475
+ :username,
1476
+ :password,
1477
+ :server_name,
1478
+ :port,
1479
+ :database_name,
1480
+ :extra_connection_attributes,
1481
+ :certificate_arn,
1482
+ :ssl_mode)
1483
+ include Aws::Structure
1484
+ end
1485
+
1486
+ # @!attribute [rw] endpoint
1487
+ # The modified endpoint.
1488
+ # @return [Types::Endpoint]
1489
+ class ModifyEndpointResponse < Struct.new(
1490
+ :endpoint)
1491
+ include Aws::Structure
1492
+ end
1493
+
1494
+ # @note When making an API call, pass ModifyReplicationInstanceMessage
1495
+ # data as a hash:
1496
+ #
1497
+ # {
1498
+ # replication_instance_arn: "String", # required
1499
+ # allocated_storage: 1,
1500
+ # apply_immediately: false,
1501
+ # replication_instance_class: "String",
1502
+ # vpc_security_group_ids: ["String"],
1503
+ # preferred_maintenance_window: "String",
1504
+ # multi_az: false,
1505
+ # engine_version: "String",
1506
+ # allow_major_version_upgrade: false,
1507
+ # auto_minor_version_upgrade: false,
1508
+ # replication_instance_identifier: "String",
1509
+ # }
1510
+ # @!attribute [rw] replication_instance_arn
1511
+ # The Amazon Resource Name (ARN) of the replication instance.
1512
+ # @return [String]
1513
+ #
1514
+ # @!attribute [rw] allocated_storage
1515
+ # The amount of storage (in gigabytes) to be allocated for the
1516
+ # replication instance.
1517
+ # @return [Integer]
1518
+ #
1519
+ # @!attribute [rw] apply_immediately
1520
+ # Indicates whether the changes should be applied immediately or
1521
+ # during the next maintenance window.
1522
+ # @return [Boolean]
1523
+ #
1524
+ # @!attribute [rw] replication_instance_class
1525
+ # The compute and memory capacity of the replication instance.
1526
+ #
1527
+ # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
1528
+ # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
1529
+ # dms.c4.4xlarge `
1530
+ # @return [String]
1531
+ #
1532
+ # @!attribute [rw] vpc_security_group_ids
1533
+ # Specifies the VPC security group to be used with the replication
1534
+ # instance. The VPC security group must work with the VPC containing
1535
+ # the replication instance.
1536
+ # @return [Array<String>]
1537
+ #
1538
+ # @!attribute [rw] preferred_maintenance_window
1539
+ # The weekly time range (in UTC) during which system maintenance can
1540
+ # occur, which might result in an outage. Changing this parameter does
1541
+ # not result in an outage, except in the following situation, and the
1542
+ # change is asynchronously applied as soon as possible. If moving this
1543
+ # window to the current time, there must be at least 30 minutes
1544
+ # between the current time and end of the window to ensure pending
1545
+ # changes are applied.
1546
+ #
1547
+ # Default: Uses existing setting
1548
+ #
1549
+ # Format: ddd:hh24:mi-ddd:hh24:mi
1550
+ #
1551
+ # Valid Days: Mon \| Tue \| Wed \| Thu \| Fri \| Sat \| Sun
1552
+ #
1553
+ # Constraints: Must be at least 30 minutes
1554
+ # @return [String]
1555
+ #
1556
+ # @!attribute [rw] multi_az
1557
+ # Specifies if the replication instance is a Multi-AZ deployment. You
1558
+ # cannot set the `AvailabilityZone` parameter if the Multi-AZ
1559
+ # parameter is set to `true`.
1560
+ # @return [Boolean]
1561
+ #
1562
+ # @!attribute [rw] engine_version
1563
+ # The engine version number of the replication instance.
1564
+ # @return [String]
1565
+ #
1566
+ # @!attribute [rw] allow_major_version_upgrade
1567
+ # Indicates that major version upgrades are allowed. Changing this
1568
+ # parameter does not result in an outage and the change is
1569
+ # asynchronously applied as soon as possible.
1570
+ #
1571
+ # Constraints: This parameter must be set to true when specifying a
1572
+ # value for the `EngineVersion` parameter that is a different major
1573
+ # version than the replication instance's current version.
1574
+ # @return [Boolean]
1575
+ #
1576
+ # @!attribute [rw] auto_minor_version_upgrade
1577
+ # Indicates that minor version upgrades will be applied automatically
1578
+ # to the replication instance during the maintenance window. Changing
1579
+ # this parameter does not result in an outage except in the following
1580
+ # case and the change is asynchronously applied as soon as possible.
1581
+ # An outage will result if this parameter is set to `true` during the
1582
+ # maintenance window, and a newer minor version is available, and AWS
1583
+ # DMS has enabled auto patching for that engine version.
1584
+ # @return [Boolean]
1585
+ #
1586
+ # @!attribute [rw] replication_instance_identifier
1587
+ # The replication instance identifier. This parameter is stored as a
1588
+ # lowercase string.
1589
+ # @return [String]
1590
+ class ModifyReplicationInstanceMessage < Struct.new(
1591
+ :replication_instance_arn,
1592
+ :allocated_storage,
1593
+ :apply_immediately,
1594
+ :replication_instance_class,
1595
+ :vpc_security_group_ids,
1596
+ :preferred_maintenance_window,
1597
+ :multi_az,
1598
+ :engine_version,
1599
+ :allow_major_version_upgrade,
1600
+ :auto_minor_version_upgrade,
1601
+ :replication_instance_identifier)
1602
+ include Aws::Structure
1603
+ end
1604
+
1605
+ # @!attribute [rw] replication_instance
1606
+ # The modified replication instance.
1607
+ # @return [Types::ReplicationInstance]
1608
+ class ModifyReplicationInstanceResponse < Struct.new(
1609
+ :replication_instance)
1610
+ include Aws::Structure
1611
+ end
1612
+
1613
+ # @note When making an API call, pass ModifyReplicationSubnetGroupMessage
1614
+ # data as a hash:
1615
+ #
1616
+ # {
1617
+ # replication_subnet_group_identifier: "String", # required
1618
+ # replication_subnet_group_description: "String",
1619
+ # subnet_ids: ["String"], # required
1620
+ # }
1621
+ # @!attribute [rw] replication_subnet_group_identifier
1622
+ # The name of the replication instance subnet group.
1623
+ # @return [String]
1624
+ #
1625
+ # @!attribute [rw] replication_subnet_group_description
1626
+ # The description of the replication instance subnet group.
1627
+ # @return [String]
1628
+ #
1629
+ # @!attribute [rw] subnet_ids
1630
+ # A list of subnet IDs.
1631
+ # @return [Array<String>]
1632
+ class ModifyReplicationSubnetGroupMessage < Struct.new(
1633
+ :replication_subnet_group_identifier,
1634
+ :replication_subnet_group_description,
1635
+ :subnet_ids)
1636
+ include Aws::Structure
1637
+ end
1638
+
1639
+ # @!attribute [rw] replication_subnet_group
1640
+ # The modified replication subnet group.
1641
+ # @return [Types::ReplicationSubnetGroup]
1642
+ class ModifyReplicationSubnetGroupResponse < Struct.new(
1643
+ :replication_subnet_group)
1644
+ include Aws::Structure
1645
+ end
1646
+
1647
+ # @!attribute [rw] engine_version
1648
+ # The version of the replication engine.
1649
+ # @return [String]
1650
+ #
1651
+ # @!attribute [rw] replication_instance_class
1652
+ # The compute and memory capacity of the replication instance.
1653
+ #
1654
+ # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
1655
+ # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
1656
+ # dms.c4.4xlarge `
1657
+ # @return [String]
1658
+ #
1659
+ # @!attribute [rw] storage_type
1660
+ # The type of storage used by the replication instance.
1661
+ # @return [String]
1662
+ #
1663
+ # @!attribute [rw] min_allocated_storage
1664
+ # The minimum amount of storage (in gigabytes) that can be allocated
1665
+ # for the replication instance.
1666
+ # @return [Integer]
1667
+ #
1668
+ # @!attribute [rw] max_allocated_storage
1669
+ # The minimum amount of storage (in gigabytes) that can be allocated
1670
+ # for the replication instance.
1671
+ # @return [Integer]
1672
+ #
1673
+ # @!attribute [rw] default_allocated_storage
1674
+ # The default amount of storage (in gigabytes) that is allocated for
1675
+ # the replication instance.
1676
+ # @return [Integer]
1677
+ #
1678
+ # @!attribute [rw] included_allocated_storage
1679
+ # The amount of storage (in gigabytes) that is allocated for the
1680
+ # replication instance.
1681
+ # @return [Integer]
1682
+ class OrderableReplicationInstance < Struct.new(
1683
+ :engine_version,
1684
+ :replication_instance_class,
1685
+ :storage_type,
1686
+ :min_allocated_storage,
1687
+ :max_allocated_storage,
1688
+ :default_allocated_storage,
1689
+ :included_allocated_storage)
1690
+ include Aws::Structure
1691
+ end
1692
+
1693
+ # @note When making an API call, pass RefreshSchemasMessage
1694
+ # data as a hash:
1695
+ #
1696
+ # {
1697
+ # endpoint_arn: "String", # required
1698
+ # replication_instance_arn: "String", # required
1699
+ # }
1700
+ # @!attribute [rw] endpoint_arn
1701
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
1702
+ # endpoint.
1703
+ # @return [String]
1704
+ #
1705
+ # @!attribute [rw] replication_instance_arn
1706
+ # The Amazon Resource Name (ARN) of the replication instance.
1707
+ # @return [String]
1708
+ class RefreshSchemasMessage < Struct.new(
1709
+ :endpoint_arn,
1710
+ :replication_instance_arn)
1711
+ include Aws::Structure
1712
+ end
1713
+
1714
+ # @!attribute [rw] refresh_schemas_status
1715
+ # The status of the refreshed schema.
1716
+ # @return [Types::RefreshSchemasStatus]
1717
+ class RefreshSchemasResponse < Struct.new(
1718
+ :refresh_schemas_status)
1719
+ include Aws::Structure
1720
+ end
1721
+
1722
+ # @!attribute [rw] endpoint_arn
1723
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
1724
+ # endpoint.
1725
+ # @return [String]
1726
+ #
1727
+ # @!attribute [rw] replication_instance_arn
1728
+ # The Amazon Resource Name (ARN) of the replication instance.
1729
+ # @return [String]
1730
+ #
1731
+ # @!attribute [rw] status
1732
+ # The status of the schema.
1733
+ # @return [String]
1734
+ #
1735
+ # @!attribute [rw] last_refresh_date
1736
+ # The date the schema was last refreshed.
1737
+ # @return [Time]
1738
+ #
1739
+ # @!attribute [rw] last_failure_message
1740
+ # The last failure message for the schema.
1741
+ # @return [String]
1742
+ class RefreshSchemasStatus < Struct.new(
1743
+ :endpoint_arn,
1744
+ :replication_instance_arn,
1745
+ :status,
1746
+ :last_refresh_date,
1747
+ :last_failure_message)
1748
+ include Aws::Structure
1749
+ end
1750
+
1751
+ # @note When making an API call, pass RemoveTagsFromResourceMessage
1752
+ # data as a hash:
1753
+ #
1754
+ # {
1755
+ # resource_arn: "String", # required
1756
+ # tag_keys: ["String"], # required
1757
+ # }
1758
+ # @!attribute [rw] resource_arn
1759
+ # &gt;The Amazon Resource Name (ARN) of the AWS DMS resource the tag
1760
+ # is to be removed from.
1761
+ # @return [String]
1762
+ #
1763
+ # @!attribute [rw] tag_keys
1764
+ # The tag key (name) of the tag to be removed.
1765
+ # @return [Array<String>]
1766
+ class RemoveTagsFromResourceMessage < Struct.new(
1767
+ :resource_arn,
1768
+ :tag_keys)
1769
+ include Aws::Structure
1770
+ end
1771
+
1772
+ class RemoveTagsFromResourceResponse < Aws::EmptyStructure; end
1773
+
1774
+ # @!attribute [rw] replication_instance_identifier
1775
+ # The replication instance identifier. This parameter is stored as a
1776
+ # lowercase string.
1777
+ #
1778
+ # Constraints:
1779
+ #
1780
+ # * Must contain from 1 to 63 alphanumeric characters or hyphens.
1781
+ #
1782
+ # * First character must be a letter.
1783
+ #
1784
+ # * Cannot end with a hyphen or contain two consecutive hyphens.
1785
+ #
1786
+ # Example: `myrepinstance`
1787
+ # @return [String]
1788
+ #
1789
+ # @!attribute [rw] replication_instance_class
1790
+ # The compute and memory capacity of the replication instance.
1791
+ #
1792
+ # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
1793
+ # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
1794
+ # dms.c4.4xlarge `
1795
+ # @return [String]
1796
+ #
1797
+ # @!attribute [rw] replication_instance_status
1798
+ # The status of the replication instance.
1799
+ # @return [String]
1800
+ #
1801
+ # @!attribute [rw] allocated_storage
1802
+ # The amount of storage (in gigabytes) that is allocated for the
1803
+ # replication instance.
1804
+ # @return [Integer]
1805
+ #
1806
+ # @!attribute [rw] instance_create_time
1807
+ # The time the replication instance was created.
1808
+ # @return [Time]
1809
+ #
1810
+ # @!attribute [rw] vpc_security_groups
1811
+ # The VPC security group for the instance.
1812
+ # @return [Array<Types::VpcSecurityGroupMembership>]
1813
+ #
1814
+ # @!attribute [rw] availability_zone
1815
+ # The Availability Zone for the instance.
1816
+ # @return [String]
1817
+ #
1818
+ # @!attribute [rw] replication_subnet_group
1819
+ # The subnet group for the replication instance.
1820
+ # @return [Types::ReplicationSubnetGroup]
1821
+ #
1822
+ # @!attribute [rw] preferred_maintenance_window
1823
+ # The maintenance window times for the replication instance.
1824
+ # @return [String]
1825
+ #
1826
+ # @!attribute [rw] pending_modified_values
1827
+ # The pending modification values.
1828
+ # @return [Types::ReplicationPendingModifiedValues]
1829
+ #
1830
+ # @!attribute [rw] multi_az
1831
+ # Specifies if the replication instance is a Multi-AZ deployment. You
1832
+ # cannot set the `AvailabilityZone` parameter if the Multi-AZ
1833
+ # parameter is set to `true`.
1834
+ # @return [Boolean]
1835
+ #
1836
+ # @!attribute [rw] engine_version
1837
+ # The engine version number of the replication instance.
1838
+ # @return [String]
1839
+ #
1840
+ # @!attribute [rw] auto_minor_version_upgrade
1841
+ # Boolean value indicating if minor version upgrades will be
1842
+ # automatically applied to the instance.
1843
+ # @return [Boolean]
1844
+ #
1845
+ # @!attribute [rw] kms_key_id
1846
+ # The KMS key identifier that is used to encrypt the content on the
1847
+ # replication instance. If you do not specify a value for the KmsKeyId
1848
+ # parameter, then AWS DMS will use your default encryption key. AWS
1849
+ # KMS creates the default encryption key for your AWS account. Your
1850
+ # AWS account has a different default encryption key for each AWS
1851
+ # region.
1852
+ # @return [String]
1853
+ #
1854
+ # @!attribute [rw] replication_instance_arn
1855
+ # The Amazon Resource Name (ARN) of the replication instance.
1856
+ # @return [String]
1857
+ #
1858
+ # @!attribute [rw] replication_instance_public_ip_address
1859
+ # The public IP address of the replication instance.
1860
+ # @return [String]
1861
+ #
1862
+ # @!attribute [rw] replication_instance_private_ip_address
1863
+ # The private IP address of the replication instance.
1864
+ # @return [String]
1865
+ #
1866
+ # @!attribute [rw] replication_instance_public_ip_addresses
1867
+ # The public IP address of the replication instance.
1868
+ # @return [Array<String>]
1869
+ #
1870
+ # @!attribute [rw] replication_instance_private_ip_addresses
1871
+ # The private IP address of the replication instance.
1872
+ # @return [Array<String>]
1873
+ #
1874
+ # @!attribute [rw] publicly_accessible
1875
+ # Specifies the accessibility options for the replication instance. A
1876
+ # value of `true` represents an instance with a public IP address. A
1877
+ # value of `false` represents an instance with a private IP address.
1878
+ # The default value is `true`.
1879
+ # @return [Boolean]
1880
+ class ReplicationInstance < Struct.new(
1881
+ :replication_instance_identifier,
1882
+ :replication_instance_class,
1883
+ :replication_instance_status,
1884
+ :allocated_storage,
1885
+ :instance_create_time,
1886
+ :vpc_security_groups,
1887
+ :availability_zone,
1888
+ :replication_subnet_group,
1889
+ :preferred_maintenance_window,
1890
+ :pending_modified_values,
1891
+ :multi_az,
1892
+ :engine_version,
1893
+ :auto_minor_version_upgrade,
1894
+ :kms_key_id,
1895
+ :replication_instance_arn,
1896
+ :replication_instance_public_ip_address,
1897
+ :replication_instance_private_ip_address,
1898
+ :replication_instance_public_ip_addresses,
1899
+ :replication_instance_private_ip_addresses,
1900
+ :publicly_accessible)
1901
+ include Aws::Structure
1902
+ end
1903
+
1904
+ # @!attribute [rw] replication_instance_class
1905
+ # The compute and memory capacity of the replication instance.
1906
+ #
1907
+ # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
1908
+ # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
1909
+ # dms.c4.4xlarge `
1910
+ # @return [String]
1911
+ #
1912
+ # @!attribute [rw] allocated_storage
1913
+ # The amount of storage (in gigabytes) that is allocated for the
1914
+ # replication instance.
1915
+ # @return [Integer]
1916
+ #
1917
+ # @!attribute [rw] multi_az
1918
+ # Specifies if the replication instance is a Multi-AZ deployment. You
1919
+ # cannot set the `AvailabilityZone` parameter if the Multi-AZ
1920
+ # parameter is set to `true`.
1921
+ # @return [Boolean]
1922
+ #
1923
+ # @!attribute [rw] engine_version
1924
+ # The engine version number of the replication instance.
1925
+ # @return [String]
1926
+ class ReplicationPendingModifiedValues < Struct.new(
1927
+ :replication_instance_class,
1928
+ :allocated_storage,
1929
+ :multi_az,
1930
+ :engine_version)
1931
+ include Aws::Structure
1932
+ end
1933
+
1934
+ # @!attribute [rw] replication_subnet_group_identifier
1935
+ # The identifier of the replication instance subnet group.
1936
+ # @return [String]
1937
+ #
1938
+ # @!attribute [rw] replication_subnet_group_description
1939
+ # The description of the replication subnet group.
1940
+ # @return [String]
1941
+ #
1942
+ # @!attribute [rw] vpc_id
1943
+ # The ID of the VPC.
1944
+ # @return [String]
1945
+ #
1946
+ # @!attribute [rw] subnet_group_status
1947
+ # The status of the subnet group.
1948
+ # @return [String]
1949
+ #
1950
+ # @!attribute [rw] subnets
1951
+ # The subnets that are in the subnet group.
1952
+ # @return [Array<Types::Subnet>]
1953
+ class ReplicationSubnetGroup < Struct.new(
1954
+ :replication_subnet_group_identifier,
1955
+ :replication_subnet_group_description,
1956
+ :vpc_id,
1957
+ :subnet_group_status,
1958
+ :subnets)
1959
+ include Aws::Structure
1960
+ end
1961
+
1962
+ # @!attribute [rw] replication_task_identifier
1963
+ # The replication task identifier.
1964
+ #
1965
+ # Constraints:
1966
+ #
1967
+ # * Must contain from 1 to 63 alphanumeric characters or hyphens.
1968
+ #
1969
+ # * First character must be a letter.
1970
+ #
1971
+ # * Cannot end with a hyphen or contain two consecutive hyphens.
1972
+ # @return [String]
1973
+ #
1974
+ # @!attribute [rw] source_endpoint_arn
1975
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
1976
+ # endpoint.
1977
+ # @return [String]
1978
+ #
1979
+ # @!attribute [rw] target_endpoint_arn
1980
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
1981
+ # endpoint.
1982
+ # @return [String]
1983
+ #
1984
+ # @!attribute [rw] replication_instance_arn
1985
+ # The Amazon Resource Name (ARN) of the replication instance.
1986
+ # @return [String]
1987
+ #
1988
+ # @!attribute [rw] migration_type
1989
+ # The type of migration.
1990
+ # @return [String]
1991
+ #
1992
+ # @!attribute [rw] table_mappings
1993
+ # Table mappings specified in the task.
1994
+ # @return [String]
1995
+ #
1996
+ # @!attribute [rw] replication_task_settings
1997
+ # The settings for the replication task.
1998
+ # @return [String]
1999
+ #
2000
+ # @!attribute [rw] status
2001
+ # The status of the replication task.
2002
+ # @return [String]
2003
+ #
2004
+ # @!attribute [rw] last_failure_message
2005
+ # The last error (failure) message generated for the replication
2006
+ # instance.
2007
+ # @return [String]
2008
+ #
2009
+ # @!attribute [rw] replication_task_creation_date
2010
+ # The date the replication task was created.
2011
+ # @return [Time]
2012
+ #
2013
+ # @!attribute [rw] replication_task_start_date
2014
+ # The date the replication task is scheduled to start.
2015
+ # @return [Time]
2016
+ #
2017
+ # @!attribute [rw] replication_task_arn
2018
+ # The Amazon Resource Name (ARN) of the replication task.
2019
+ # @return [String]
2020
+ #
2021
+ # @!attribute [rw] replication_task_stats
2022
+ # The statistics for the task, including elapsed time, tables loaded,
2023
+ # and table errors.
2024
+ # @return [Types::ReplicationTaskStats]
2025
+ class ReplicationTask < Struct.new(
2026
+ :replication_task_identifier,
2027
+ :source_endpoint_arn,
2028
+ :target_endpoint_arn,
2029
+ :replication_instance_arn,
2030
+ :migration_type,
2031
+ :table_mappings,
2032
+ :replication_task_settings,
2033
+ :status,
2034
+ :last_failure_message,
2035
+ :replication_task_creation_date,
2036
+ :replication_task_start_date,
2037
+ :replication_task_arn,
2038
+ :replication_task_stats)
2039
+ include Aws::Structure
2040
+ end
2041
+
2042
+ # @!attribute [rw] full_load_progress_percent
2043
+ # The percent complete for the full load migration task.
2044
+ # @return [Integer]
2045
+ #
2046
+ # @!attribute [rw] elapsed_time_millis
2047
+ # The elapsed time of the task, in milliseconds.
2048
+ # @return [Integer]
2049
+ #
2050
+ # @!attribute [rw] tables_loaded
2051
+ # The number of tables loaded for this task.
2052
+ # @return [Integer]
2053
+ #
2054
+ # @!attribute [rw] tables_loading
2055
+ # The number of tables currently loading for this task.
2056
+ # @return [Integer]
2057
+ #
2058
+ # @!attribute [rw] tables_queued
2059
+ # The number of tables queued for this task.
2060
+ # @return [Integer]
2061
+ #
2062
+ # @!attribute [rw] tables_errored
2063
+ # The number of errors that have occurred during this task.
2064
+ # @return [Integer]
2065
+ class ReplicationTaskStats < Struct.new(
2066
+ :full_load_progress_percent,
2067
+ :elapsed_time_millis,
2068
+ :tables_loaded,
2069
+ :tables_loading,
2070
+ :tables_queued,
2071
+ :tables_errored)
2072
+ include Aws::Structure
2073
+ end
2074
+
2075
+ # @note When making an API call, pass StartReplicationTaskMessage
2076
+ # data as a hash:
2077
+ #
2078
+ # {
2079
+ # replication_task_arn: "String", # required
2080
+ # start_replication_task_type: "start-replication", # required, accepts start-replication, resume-processing, reload-target
2081
+ # cdc_start_time: Time.now,
2082
+ # }
2083
+ # @!attribute [rw] replication_task_arn
2084
+ # The Amazon Resource Number (ARN) of the replication task to be
2085
+ # started.
2086
+ # @return [String]
2087
+ #
2088
+ # @!attribute [rw] start_replication_task_type
2089
+ # The type of replication task.
2090
+ # @return [String]
2091
+ #
2092
+ # @!attribute [rw] cdc_start_time
2093
+ # The start time for the Change Data Capture (CDC) operation.
2094
+ # @return [Time]
2095
+ class StartReplicationTaskMessage < Struct.new(
2096
+ :replication_task_arn,
2097
+ :start_replication_task_type,
2098
+ :cdc_start_time)
2099
+ include Aws::Structure
2100
+ end
2101
+
2102
+ # @!attribute [rw] replication_task
2103
+ # The replication task started.
2104
+ # @return [Types::ReplicationTask]
2105
+ class StartReplicationTaskResponse < Struct.new(
2106
+ :replication_task)
2107
+ include Aws::Structure
2108
+ end
2109
+
2110
+ # @note When making an API call, pass StopReplicationTaskMessage
2111
+ # data as a hash:
2112
+ #
2113
+ # {
2114
+ # replication_task_arn: "String", # required
2115
+ # }
2116
+ # @!attribute [rw] replication_task_arn
2117
+ # The Amazon Resource Number(ARN) of the replication task to be
2118
+ # stopped.
2119
+ # @return [String]
2120
+ class StopReplicationTaskMessage < Struct.new(
2121
+ :replication_task_arn)
2122
+ include Aws::Structure
2123
+ end
2124
+
2125
+ # @!attribute [rw] replication_task
2126
+ # The replication task stopped.
2127
+ # @return [Types::ReplicationTask]
2128
+ class StopReplicationTaskResponse < Struct.new(
2129
+ :replication_task)
2130
+ include Aws::Structure
2131
+ end
2132
+
2133
+ # @!attribute [rw] subnet_identifier
2134
+ # The subnet identifier.
2135
+ # @return [String]
2136
+ #
2137
+ # @!attribute [rw] subnet_availability_zone
2138
+ # The Availability Zone of the subnet.
2139
+ # @return [Types::AvailabilityZone]
2140
+ #
2141
+ # @!attribute [rw] subnet_status
2142
+ # The status of the subnet.
2143
+ # @return [String]
2144
+ class Subnet < Struct.new(
2145
+ :subnet_identifier,
2146
+ :subnet_availability_zone,
2147
+ :subnet_status)
2148
+ include Aws::Structure
2149
+ end
2150
+
2151
+ # @!attribute [rw] engine_name
2152
+ # The database engine name.
2153
+ # @return [String]
2154
+ #
2155
+ # @!attribute [rw] supports_cdc
2156
+ # Indicates if Change Data Capture (CDC) is supported.
2157
+ # @return [Boolean]
2158
+ #
2159
+ # @!attribute [rw] endpoint_type
2160
+ # The type of endpoint.
2161
+ # @return [String]
2162
+ class SupportedEndpointType < Struct.new(
2163
+ :engine_name,
2164
+ :supports_cdc,
2165
+ :endpoint_type)
2166
+ include Aws::Structure
2167
+ end
2168
+
2169
+ # @!attribute [rw] schema_name
2170
+ # The schema name.
2171
+ # @return [String]
2172
+ #
2173
+ # @!attribute [rw] table_name
2174
+ # The name of the table.
2175
+ # @return [String]
2176
+ #
2177
+ # @!attribute [rw] inserts
2178
+ # The number of insert actions performed on a table.
2179
+ # @return [Integer]
2180
+ #
2181
+ # @!attribute [rw] deletes
2182
+ # The number of delete actions performed on a table.
2183
+ # @return [Integer]
2184
+ #
2185
+ # @!attribute [rw] updates
2186
+ # The number of update actions performed on a table.
2187
+ # @return [Integer]
2188
+ #
2189
+ # @!attribute [rw] ddls
2190
+ # The Data Definition Language (DDL) used to build and modify the
2191
+ # structure of your tables.
2192
+ # @return [Integer]
2193
+ #
2194
+ # @!attribute [rw] full_load_rows
2195
+ # The number of rows added during the Full Load operation.
2196
+ # @return [Integer]
2197
+ #
2198
+ # @!attribute [rw] last_update_time
2199
+ # The last time the table was updated.
2200
+ # @return [Time]
2201
+ #
2202
+ # @!attribute [rw] table_state
2203
+ # The state of the table.
2204
+ # @return [String]
2205
+ class TableStatistics < Struct.new(
2206
+ :schema_name,
2207
+ :table_name,
2208
+ :inserts,
2209
+ :deletes,
2210
+ :updates,
2211
+ :ddls,
2212
+ :full_load_rows,
2213
+ :last_update_time,
2214
+ :table_state)
2215
+ include Aws::Structure
2216
+ end
2217
+
2218
+ # @note When making an API call, pass Tag
2219
+ # data as a hash:
2220
+ #
2221
+ # {
2222
+ # key: "String",
2223
+ # value: "String",
2224
+ # }
2225
+ # @!attribute [rw] key
2226
+ # A key is the required name of the tag. The string value can be from
2227
+ # 1 to 128 Unicode characters in length and cannot be prefixed with
2228
+ # "aws:" or "dms:". The string can only contain only the set of
2229
+ # Unicode letters, digits, white-space, '\_', '.', '/', '=',
2230
+ # '+', '-' (Java regex:
2231
+ # "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-\]*)$").
2232
+ # @return [String]
2233
+ #
2234
+ # @!attribute [rw] value
2235
+ # A value is the optional value of the tag. The string value can be
2236
+ # from 1 to 256 Unicode characters in length and cannot be prefixed
2237
+ # with "aws:" or "dms:". The string can only contain only the set
2238
+ # of Unicode letters, digits, white-space, '\_', '.', '/',
2239
+ # '=', '+', '-' (Java regex:
2240
+ # "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-\]*)$").
2241
+ # @return [String]
2242
+ class Tag < Struct.new(
2243
+ :key,
2244
+ :value)
2245
+ include Aws::Structure
2246
+ end
2247
+
2248
+ # @note When making an API call, pass TestConnectionMessage
2249
+ # data as a hash:
2250
+ #
2251
+ # {
2252
+ # replication_instance_arn: "String", # required
2253
+ # endpoint_arn: "String", # required
2254
+ # }
2255
+ # @!attribute [rw] replication_instance_arn
2256
+ # The Amazon Resource Name (ARN) of the replication instance.
2257
+ # @return [String]
2258
+ #
2259
+ # @!attribute [rw] endpoint_arn
2260
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
2261
+ # endpoint.
2262
+ # @return [String]
2263
+ class TestConnectionMessage < Struct.new(
2264
+ :replication_instance_arn,
2265
+ :endpoint_arn)
2266
+ include Aws::Structure
2267
+ end
2268
+
2269
+ # @!attribute [rw] connection
2270
+ # The connection tested.
2271
+ # @return [Types::Connection]
2272
+ class TestConnectionResponse < Struct.new(
2273
+ :connection)
2274
+ include Aws::Structure
2275
+ end
2276
+
2277
+ # @!attribute [rw] vpc_security_group_id
2278
+ # The VPC security group Id.
2279
+ # @return [String]
2280
+ #
2281
+ # @!attribute [rw] status
2282
+ # The status of the VPC security group.
2283
+ # @return [String]
2284
+ class VpcSecurityGroupMembership < Struct.new(
2285
+ :vpc_security_group_id,
2286
+ :status)
2287
+ include Aws::Structure
2288
+ end
2289
+
2290
+ end
2291
+ end
2292
+ end