aws-sdk-databasemigrationservice 1.0.0.rc1 → 1.0.0.rc2

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