aws-sdk-databasemigrationservice 1.25.0 → 1.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -154,6 +154,7 @@ module Aws::DatabaseMigrationService
|
|
154
154
|
RefreshSchemasResponse = Shapes::StructureShape.new(name: 'RefreshSchemasResponse')
|
155
155
|
RefreshSchemasStatus = Shapes::StructureShape.new(name: 'RefreshSchemasStatus')
|
156
156
|
RefreshSchemasStatusTypeValue = Shapes::StringShape.new(name: 'RefreshSchemasStatusTypeValue')
|
157
|
+
ReleaseStatusValues = Shapes::StringShape.new(name: 'ReleaseStatusValues')
|
157
158
|
ReloadOptionValue = Shapes::StringShape.new(name: 'ReloadOptionValue')
|
158
159
|
ReloadTablesMessage = Shapes::StructureShape.new(name: 'ReloadTablesMessage')
|
159
160
|
ReloadTablesResponse = Shapes::StructureShape.new(name: 'ReloadTablesResponse')
|
@@ -390,6 +391,7 @@ module Aws::DatabaseMigrationService
|
|
390
391
|
DescribeAccountAttributesMessage.struct_class = Types::DescribeAccountAttributesMessage
|
391
392
|
|
392
393
|
DescribeAccountAttributesResponse.add_member(:account_quotas, Shapes::ShapeRef.new(shape: AccountQuotaList, location_name: "AccountQuotas"))
|
394
|
+
DescribeAccountAttributesResponse.add_member(:unique_account_identifier, Shapes::ShapeRef.new(shape: String, location_name: "UniqueAccountIdentifier"))
|
393
395
|
DescribeAccountAttributesResponse.struct_class = Types::DescribeAccountAttributesResponse
|
394
396
|
|
395
397
|
DescribeCertificatesMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
@@ -778,6 +780,7 @@ module Aws::DatabaseMigrationService
|
|
778
780
|
OrderableReplicationInstance.add_member(:default_allocated_storage, Shapes::ShapeRef.new(shape: Integer, location_name: "DefaultAllocatedStorage"))
|
779
781
|
OrderableReplicationInstance.add_member(:included_allocated_storage, Shapes::ShapeRef.new(shape: Integer, location_name: "IncludedAllocatedStorage"))
|
780
782
|
OrderableReplicationInstance.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZonesList, location_name: "AvailabilityZones"))
|
783
|
+
OrderableReplicationInstance.add_member(:release_status, Shapes::ShapeRef.new(shape: ReleaseStatusValues, location_name: "ReleaseStatus"))
|
781
784
|
OrderableReplicationInstance.struct_class = Types::OrderableReplicationInstance
|
782
785
|
|
783
786
|
OrderableReplicationInstanceList.member = Shapes::ShapeRef.new(shape: OrderableReplicationInstance)
|
@@ -982,7 +985,9 @@ module Aws::DatabaseMigrationService
|
|
982
985
|
S3Settings.add_member(:data_page_size, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "DataPageSize"))
|
983
986
|
S3Settings.add_member(:parquet_version, Shapes::ShapeRef.new(shape: ParquetVersionValue, location_name: "ParquetVersion"))
|
984
987
|
S3Settings.add_member(:enable_statistics, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableStatistics"))
|
988
|
+
S3Settings.add_member(:include_op_for_full_load, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IncludeOpForFullLoad"))
|
985
989
|
S3Settings.add_member(:cdc_inserts_only, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CdcInsertsOnly"))
|
990
|
+
S3Settings.add_member(:timestamp_column_name, Shapes::ShapeRef.new(shape: String, location_name: "TimestampColumnName"))
|
986
991
|
S3Settings.struct_class = Types::S3Settings
|
987
992
|
|
988
993
|
SNSInvalidTopicFault.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
|
@@ -45,6 +45,8 @@ module Aws::DatabaseMigrationService
|
|
45
45
|
include Aws::Structure
|
46
46
|
end
|
47
47
|
|
48
|
+
# Associates a set of tags with an AWS DMS resource.
|
49
|
+
#
|
48
50
|
# @note When making an API call, you may pass AddTagsToResourceMessage
|
49
51
|
# data as a hash:
|
50
52
|
#
|
@@ -59,13 +61,15 @@ module Aws::DatabaseMigrationService
|
|
59
61
|
# }
|
60
62
|
#
|
61
63
|
# @!attribute [rw] resource_arn
|
62
|
-
#
|
63
|
-
#
|
64
|
-
#
|
64
|
+
# Identifies the AWS DMS resource to which tags should be added. The
|
65
|
+
# value for this parameter is an Amazon Resource Name (ARN).
|
66
|
+
#
|
67
|
+
# For AWS DMS, you can tag a replication instance, an endpoint, or a
|
68
|
+
# replication task.
|
65
69
|
# @return [String]
|
66
70
|
#
|
67
71
|
# @!attribute [rw] tags
|
68
|
-
#
|
72
|
+
# One or more tags to be assigned to the resource.
|
69
73
|
# @return [Array<Types::Tag>]
|
70
74
|
#
|
71
75
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/AddTagsToResourceMessage AWS API Documentation
|
@@ -100,8 +104,8 @@ module Aws::DatabaseMigrationService
|
|
100
104
|
#
|
101
105
|
# @!attribute [rw] opt_in_type
|
102
106
|
# A value that specifies the type of opt-in request, or undoes an
|
103
|
-
# opt-in request.
|
104
|
-
#
|
107
|
+
# opt-in request. You can't undo an opt-in request of type
|
108
|
+
# `immediate`.
|
105
109
|
#
|
106
110
|
# Valid values:
|
107
111
|
#
|
@@ -150,8 +154,9 @@ module Aws::DatabaseMigrationService
|
|
150
154
|
# the endpoints and the replication instance.
|
151
155
|
#
|
152
156
|
# @!attribute [rw] certificate_identifier
|
153
|
-
#
|
154
|
-
#
|
157
|
+
# A customer-assigned name for the certificate. Identifiers must begin
|
158
|
+
# with a letter; must contain only ASCII letters, digits, and hyphens;
|
159
|
+
# and must not end with a hyphen or contain two consecutive hyphens.
|
155
160
|
# @return [String]
|
156
161
|
#
|
157
162
|
# @!attribute [rw] certificate_creation_date
|
@@ -159,11 +164,11 @@ module Aws::DatabaseMigrationService
|
|
159
164
|
# @return [Time]
|
160
165
|
#
|
161
166
|
# @!attribute [rw] certificate_pem
|
162
|
-
# The contents of
|
167
|
+
# The contents of a `.pem` file, which contains an X.509 certificate.
|
163
168
|
# @return [String]
|
164
169
|
#
|
165
170
|
# @!attribute [rw] certificate_wallet
|
166
|
-
# The location of
|
171
|
+
# The location of an imported Oracle Wallet certificate for use with
|
167
172
|
# SSL.
|
168
173
|
# @return [String]
|
169
174
|
#
|
@@ -291,7 +296,9 @@ module Aws::DatabaseMigrationService
|
|
291
296
|
# data_page_size: 1,
|
292
297
|
# parquet_version: "parquet-1-0", # accepts parquet-1-0, parquet-2-0
|
293
298
|
# enable_statistics: false,
|
299
|
+
# include_op_for_full_load: false,
|
294
300
|
# cdc_inserts_only: false,
|
301
|
+
# timestamp_column_name: "String",
|
295
302
|
# },
|
296
303
|
# dms_transfer_settings: {
|
297
304
|
# service_access_role_arn: "String",
|
@@ -358,12 +365,12 @@ module Aws::DatabaseMigrationService
|
|
358
365
|
# @return [String]
|
359
366
|
#
|
360
367
|
# @!attribute [rw] endpoint_type
|
361
|
-
# The type of endpoint.
|
368
|
+
# The type of endpoint. Valid values are `source` and `target`.
|
362
369
|
# @return [String]
|
363
370
|
#
|
364
371
|
# @!attribute [rw] engine_name
|
365
372
|
# The type of engine for the endpoint. Valid values, depending on the
|
366
|
-
# `
|
373
|
+
# `EndpointType` value, include `mysql`, `oracle`, `postgres`,
|
367
374
|
# `mariadb`, `aurora`, `aurora-postgresql`, `redshift`, `s3`, `db2`,
|
368
375
|
# `azuredb`, `sybase`, `dynamodb`, `mongodb`, and `sqlserver`.
|
369
376
|
# @return [String]
|
@@ -389,19 +396,33 @@ module Aws::DatabaseMigrationService
|
|
389
396
|
# @return [String]
|
390
397
|
#
|
391
398
|
# @!attribute [rw] extra_connection_attributes
|
392
|
-
# Additional attributes associated with the connection.
|
399
|
+
# Additional attributes associated with the connection. Each attribute
|
400
|
+
# is specified as a name-value pair associated by an equal sign (=).
|
401
|
+
# Multiple attributes are separated by a semicolon (;) with no
|
402
|
+
# additional white space. For information on the attributes available
|
403
|
+
# for connecting your source or target endpoint, see [Working with AWS
|
404
|
+
# DMS Endpoints][1] in the *AWS Database Migration Service User
|
405
|
+
# Guide.*
|
406
|
+
#
|
407
|
+
#
|
408
|
+
#
|
409
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Endpoints.html
|
393
410
|
# @return [String]
|
394
411
|
#
|
395
412
|
# @!attribute [rw] kms_key_id
|
396
|
-
#
|
397
|
-
# parameters
|
398
|
-
#
|
399
|
-
#
|
400
|
-
#
|
413
|
+
# An AWS KMS key identifier that is used to encrypt the connection
|
414
|
+
# parameters for the endpoint.
|
415
|
+
#
|
416
|
+
# If you don't specify a value for the `KmsKeyId` parameter, then AWS
|
417
|
+
# DMS uses your default encryption key.
|
418
|
+
#
|
419
|
+
# AWS KMS creates the default encryption key for your AWS account.
|
420
|
+
# Your AWS account has a different default encryption key for each AWS
|
421
|
+
# Region.
|
401
422
|
# @return [String]
|
402
423
|
#
|
403
424
|
# @!attribute [rw] tags
|
404
|
-
#
|
425
|
+
# One or more tags to be assigned to the endpoint.
|
405
426
|
# @return [Array<Types::Tag>]
|
406
427
|
#
|
407
428
|
# @!attribute [rw] certificate_arn
|
@@ -410,8 +431,7 @@ module Aws::DatabaseMigrationService
|
|
410
431
|
#
|
411
432
|
# @!attribute [rw] ssl_mode
|
412
433
|
# The Secure Sockets Layer (SSL) mode to use for the SSL connection.
|
413
|
-
# The
|
414
|
-
# `verify-ca`, `verify-full`. The default value is `none`.
|
434
|
+
# The default is `none`
|
415
435
|
# @return [String]
|
416
436
|
#
|
417
437
|
# @!attribute [rw] service_access_role_arn
|
@@ -563,9 +583,8 @@ module Aws::DatabaseMigrationService
|
|
563
583
|
# }
|
564
584
|
#
|
565
585
|
# @!attribute [rw] subscription_name
|
566
|
-
# The name of the AWS DMS event notification subscription.
|
567
|
-
#
|
568
|
-
# Constraints: The name must be less than 255 characters.
|
586
|
+
# The name of the AWS DMS event notification subscription. This name
|
587
|
+
# must be less than 255 characters.
|
569
588
|
# @return [String]
|
570
589
|
#
|
571
590
|
# @!attribute [rw] sns_topic_arn
|
@@ -580,15 +599,14 @@ module Aws::DatabaseMigrationService
|
|
580
599
|
# instance, you set this parameter to `replication-instance`. If this
|
581
600
|
# value is not specified, all events are returned.
|
582
601
|
#
|
583
|
-
# Valid values: replication-instance \|
|
602
|
+
# Valid values: `replication-instance` \| `replication-task`
|
584
603
|
# @return [String]
|
585
604
|
#
|
586
605
|
# @!attribute [rw] event_categories
|
587
606
|
# A list of event categories for a source type that you want to
|
588
|
-
# subscribe to.
|
589
|
-
#
|
590
|
-
#
|
591
|
-
# Database Migration Service User Guide.*
|
607
|
+
# subscribe to. For more information, see [Working with Events and
|
608
|
+
# Notifications][1] in the *AWS Database Migration Service User
|
609
|
+
# Guide.*
|
592
610
|
#
|
593
611
|
#
|
594
612
|
#
|
@@ -596,11 +614,15 @@ module Aws::DatabaseMigrationService
|
|
596
614
|
# @return [Array<String>]
|
597
615
|
#
|
598
616
|
# @!attribute [rw] source_ids
|
599
|
-
#
|
600
|
-
#
|
601
|
-
#
|
602
|
-
#
|
603
|
-
#
|
617
|
+
# A list of identifiers for which AWS DMS provides notification
|
618
|
+
# events.
|
619
|
+
#
|
620
|
+
# If you don't specify a value, notifications are provided for all
|
621
|
+
# sources.
|
622
|
+
#
|
623
|
+
# If you specify multiple values, they must be of the same type. For
|
624
|
+
# example, if you specify a database instance ID, then all of the
|
625
|
+
# other values must be database instance IDs.
|
604
626
|
# @return [Array<String>]
|
605
627
|
#
|
606
628
|
# @!attribute [rw] enabled
|
@@ -609,7 +631,7 @@ module Aws::DatabaseMigrationService
|
|
609
631
|
# @return [Boolean]
|
610
632
|
#
|
611
633
|
# @!attribute [rw] tags
|
612
|
-
#
|
634
|
+
# One or more tags to be assigned to the event subscription.
|
613
635
|
# @return [Array<Types::Tag>]
|
614
636
|
#
|
615
637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEventSubscriptionMessage AWS API Documentation
|
@@ -697,13 +719,9 @@ module Aws::DatabaseMigrationService
|
|
697
719
|
# @return [Array<String>]
|
698
720
|
#
|
699
721
|
# @!attribute [rw] availability_zone
|
700
|
-
# The
|
701
|
-
# created
|
702
|
-
#
|
703
|
-
# Default: A random, system-chosen Availability Zone in the
|
704
|
-
# endpoint's region.
|
705
|
-
#
|
706
|
-
# Example: `us-east-1d`
|
722
|
+
# The AWS Availability Zone where the replication instance will be
|
723
|
+
# created. The default value is a random, system-chosen Availability
|
724
|
+
# Zone in the endpoint's AWS Region, for example: `us-east-1d`
|
707
725
|
# @return [String]
|
708
726
|
#
|
709
727
|
# @!attribute [rw] replication_subnet_group_identifier
|
@@ -717,7 +735,7 @@ module Aws::DatabaseMigrationService
|
|
717
735
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
718
736
|
#
|
719
737
|
# Default: A 30-minute window selected at random from an 8-hour block
|
720
|
-
# of time per
|
738
|
+
# of time per AWS Region, occurring on a random day of the week.
|
721
739
|
#
|
722
740
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
723
741
|
#
|
@@ -725,8 +743,8 @@ module Aws::DatabaseMigrationService
|
|
725
743
|
# @return [String]
|
726
744
|
#
|
727
745
|
# @!attribute [rw] multi_az
|
728
|
-
# Specifies
|
729
|
-
# cannot set the `AvailabilityZone` parameter if the Multi-AZ
|
746
|
+
# Specifies whether the replication instance is a Multi-AZ deployment.
|
747
|
+
# You cannot set the `AvailabilityZone` parameter if the Multi-AZ
|
730
748
|
# parameter is set to `true`.
|
731
749
|
# @return [Boolean]
|
732
750
|
#
|
@@ -735,20 +753,24 @@ module Aws::DatabaseMigrationService
|
|
735
753
|
# @return [String]
|
736
754
|
#
|
737
755
|
# @!attribute [rw] auto_minor_version_upgrade
|
738
|
-
# Indicates
|
739
|
-
# to the replication instance during the maintenance
|
756
|
+
# Indicates whether minor engine upgrades will be applied
|
757
|
+
# automatically to the replication instance during the maintenance
|
758
|
+
# window. This parameter defaults to `true`.
|
740
759
|
#
|
741
760
|
# Default: `true`
|
742
761
|
# @return [Boolean]
|
743
762
|
#
|
744
763
|
# @!attribute [rw] tags
|
745
|
-
#
|
764
|
+
# One or more tags to be assigned to the replication instance.
|
746
765
|
# @return [Array<Types::Tag>]
|
747
766
|
#
|
748
767
|
# @!attribute [rw] kms_key_id
|
749
|
-
#
|
750
|
-
#
|
751
|
-
#
|
768
|
+
# An AWS KMS key identifier that is used to encrypt the data on the
|
769
|
+
# replication instance.
|
770
|
+
#
|
771
|
+
# If you don't specify a value for the `KmsKeyId` parameter, then AWS
|
772
|
+
# DMS uses your default encryption key.
|
773
|
+
#
|
752
774
|
# AWS KMS creates the default encryption key for your AWS account.
|
753
775
|
# Your AWS account has a different default encryption key for each AWS
|
754
776
|
# Region.
|
@@ -826,11 +848,11 @@ module Aws::DatabaseMigrationService
|
|
826
848
|
# @return [String]
|
827
849
|
#
|
828
850
|
# @!attribute [rw] subnet_ids
|
829
|
-
#
|
851
|
+
# One or more subnet IDs to be assigned to the subnet group.
|
830
852
|
# @return [Array<String>]
|
831
853
|
#
|
832
854
|
# @!attribute [rw] tags
|
833
|
-
#
|
855
|
+
# One or more tags to be assigned to the subnet group.
|
834
856
|
# @return [Array<Types::Tag>]
|
835
857
|
#
|
836
858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationSubnetGroupMessage AWS API Documentation
|
@@ -877,7 +899,7 @@ module Aws::DatabaseMigrationService
|
|
877
899
|
# }
|
878
900
|
#
|
879
901
|
# @!attribute [rw] replication_task_identifier
|
880
|
-
#
|
902
|
+
# An identifier for the replication task.
|
881
903
|
#
|
882
904
|
# Constraints:
|
883
905
|
#
|
@@ -889,37 +911,37 @@ module Aws::DatabaseMigrationService
|
|
889
911
|
# @return [String]
|
890
912
|
#
|
891
913
|
# @!attribute [rw] source_endpoint_arn
|
892
|
-
#
|
914
|
+
# An Amazon Resource Name (ARN) that uniquely identifies the source
|
893
915
|
# endpoint.
|
894
916
|
# @return [String]
|
895
917
|
#
|
896
918
|
# @!attribute [rw] target_endpoint_arn
|
897
|
-
#
|
919
|
+
# An Amazon Resource Name (ARN) that uniquely identifies the target
|
898
920
|
# endpoint.
|
899
921
|
# @return [String]
|
900
922
|
#
|
901
923
|
# @!attribute [rw] replication_instance_arn
|
902
|
-
# The Amazon Resource Name (ARN) of
|
924
|
+
# The Amazon Resource Name (ARN) of a replication instance.
|
903
925
|
# @return [String]
|
904
926
|
#
|
905
927
|
# @!attribute [rw] migration_type
|
906
|
-
# The migration type.
|
928
|
+
# The migration type. Valid values: `full-load` \| `cdc` \|
|
929
|
+
# `full-load-and-cdc`
|
907
930
|
# @return [String]
|
908
931
|
#
|
909
932
|
# @!attribute [rw] table_mappings
|
910
|
-
#
|
911
|
-
#
|
912
|
-
#
|
913
|
-
#
|
933
|
+
# The table mappings for the task, in JSON format. For more
|
934
|
+
# information, see [Table Mapping][1] in the *AWS Database Migration
|
935
|
+
# User Guide.*
|
936
|
+
#
|
937
|
+
#
|
914
938
|
#
|
915
|
-
#
|
939
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TableMapping.html
|
916
940
|
# @return [String]
|
917
941
|
#
|
918
942
|
# @!attribute [rw] replication_task_settings
|
919
|
-
#
|
920
|
-
#
|
921
|
-
# Migration Service Tasks][1] in the *AWS Database Migration User
|
922
|
-
# Guide.*
|
943
|
+
# Overall settings for the task, in JSON format. For more information,
|
944
|
+
# see [Task Settings][1] in the *AWS Database Migration User Guide.*
|
923
945
|
#
|
924
946
|
#
|
925
947
|
#
|
@@ -963,7 +985,7 @@ module Aws::DatabaseMigrationService
|
|
963
985
|
# @return [String]
|
964
986
|
#
|
965
987
|
# @!attribute [rw] tags
|
966
|
-
#
|
988
|
+
# One or more tags to be assigned to the replication task.
|
967
989
|
# @return [Array<Types::Tag>]
|
968
990
|
#
|
969
991
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationTaskMessage AWS API Documentation
|
@@ -1174,10 +1196,27 @@ module Aws::DatabaseMigrationService
|
|
1174
1196
|
# Account quota information.
|
1175
1197
|
# @return [Array<Types::AccountQuota>]
|
1176
1198
|
#
|
1199
|
+
# @!attribute [rw] unique_account_identifier
|
1200
|
+
# A unique AWS DMS identifier for an account in a particular AWS
|
1201
|
+
# Region. The value of this identifier has the following format:
|
1202
|
+
# `c99999999999`. DMS uses this identifier to name artifacts. For
|
1203
|
+
# example, DMS uses this identifier to name the default Amazon S3
|
1204
|
+
# bucket for storing task assessment reports in a given AWS Region.
|
1205
|
+
# The format of this S3 bucket name is the following:
|
1206
|
+
# `dms-AccountNumber-UniqueAccountIdentifier.` Here is an example name
|
1207
|
+
# for this default S3 bucket: `dms-111122223333-c44445555666`.
|
1208
|
+
#
|
1209
|
+
# <note markdown="1"> AWS DMS supports `UniqueAccountIdentifier` in versions 3.1.4 and
|
1210
|
+
# later.
|
1211
|
+
#
|
1212
|
+
# </note>
|
1213
|
+
# @return [String]
|
1214
|
+
#
|
1177
1215
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeAccountAttributesResponse AWS API Documentation
|
1178
1216
|
#
|
1179
1217
|
class DescribeAccountAttributesResponse < Struct.new(
|
1180
|
-
:account_quotas
|
1218
|
+
:account_quotas,
|
1219
|
+
:unique_account_identifier)
|
1181
1220
|
include Aws::Structure
|
1182
1221
|
end
|
1183
1222
|
|
@@ -1212,7 +1251,7 @@ module Aws::DatabaseMigrationService
|
|
1212
1251
|
# @!attribute [rw] marker
|
1213
1252
|
# An optional pagination token provided by a previous request. If this
|
1214
1253
|
# parameter is specified, the response includes only records beyond
|
1215
|
-
# the marker, up to the
|
1254
|
+
# the marker, up to the vlue specified by `MaxRecords`.
|
1216
1255
|
# @return [String]
|
1217
1256
|
#
|
1218
1257
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeCertificatesMessage AWS API Documentation
|
@@ -1358,7 +1397,7 @@ module Aws::DatabaseMigrationService
|
|
1358
1397
|
# @return [String]
|
1359
1398
|
#
|
1360
1399
|
# @!attribute [rw] supported_endpoint_types
|
1361
|
-
# The
|
1400
|
+
# The types of endpoints that are supported.
|
1362
1401
|
# @return [Array<Types::SupportedEndpointType>]
|
1363
1402
|
#
|
1364
1403
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointTypesResponse AWS API Documentation
|
@@ -1450,7 +1489,7 @@ module Aws::DatabaseMigrationService
|
|
1450
1489
|
# @!attribute [rw] source_type
|
1451
1490
|
# The type of AWS DMS resource that generates events.
|
1452
1491
|
#
|
1453
|
-
# Valid values: replication-instance \|
|
1492
|
+
# Valid values: replication-instance \| replication-task
|
1454
1493
|
# @return [String]
|
1455
1494
|
#
|
1456
1495
|
# @!attribute [rw] filters
|
@@ -1565,15 +1604,13 @@ module Aws::DatabaseMigrationService
|
|
1565
1604
|
# }
|
1566
1605
|
#
|
1567
1606
|
# @!attribute [rw] source_identifier
|
1568
|
-
# The identifier of
|
1569
|
-
# letter and must contain only ASCII letters, digits, and hyphens. It
|
1570
|
-
# cannot end with a hyphen or contain two consecutive hyphens.
|
1607
|
+
# The identifier of an event source.
|
1571
1608
|
# @return [String]
|
1572
1609
|
#
|
1573
1610
|
# @!attribute [rw] source_type
|
1574
1611
|
# The type of AWS DMS resource that generates events.
|
1575
1612
|
#
|
1576
|
-
# Valid values: replication-instance \|
|
1613
|
+
# Valid values: replication-instance \| replication-task
|
1577
1614
|
# @return [String]
|
1578
1615
|
#
|
1579
1616
|
# @!attribute [rw] start_time
|
@@ -1589,8 +1626,7 @@ module Aws::DatabaseMigrationService
|
|
1589
1626
|
# @return [Integer]
|
1590
1627
|
#
|
1591
1628
|
# @!attribute [rw] event_categories
|
1592
|
-
# A list of event categories for
|
1593
|
-
# subscribe to.
|
1629
|
+
# A list of event categories for the source type that you've chosen.
|
1594
1630
|
# @return [Array<String>]
|
1595
1631
|
#
|
1596
1632
|
# @!attribute [rw] filters
|
@@ -1714,7 +1750,7 @@ module Aws::DatabaseMigrationService
|
|
1714
1750
|
# }
|
1715
1751
|
#
|
1716
1752
|
# @!attribute [rw] replication_instance_arn
|
1717
|
-
# The ARN of the replication instance.
|
1753
|
+
# The Amazon Resource Name (ARN) of the replication instance.
|
1718
1754
|
# @return [String]
|
1719
1755
|
#
|
1720
1756
|
# @!attribute [rw] filters
|
@@ -2092,9 +2128,10 @@ module Aws::DatabaseMigrationService
|
|
2092
2128
|
# @return [String]
|
2093
2129
|
#
|
2094
2130
|
# @!attribute [rw] without_settings
|
2095
|
-
#
|
2096
|
-
# reduce overhead when
|
2097
|
-
#
|
2131
|
+
# An option to set to avoid returning information about settings. Use
|
2132
|
+
# this to reduce overhead when setting information is too large. To
|
2133
|
+
# use this option, choose `true`; otherwise, choose `false` (the
|
2134
|
+
# default).
|
2098
2135
|
# @return [Boolean]
|
2099
2136
|
#
|
2100
2137
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasksMessage AWS API Documentation
|
@@ -2321,7 +2358,7 @@ module Aws::DatabaseMigrationService
|
|
2321
2358
|
# @return [String]
|
2322
2359
|
#
|
2323
2360
|
# @!attribute [rw] endpoint_uri
|
2324
|
-
# The endpoint for the
|
2361
|
+
# The endpoint for the Elasticsearch cluster.
|
2325
2362
|
# @return [String]
|
2326
2363
|
#
|
2327
2364
|
# @!attribute [rw] full_load_error_percentage
|
@@ -2351,14 +2388,14 @@ module Aws::DatabaseMigrationService
|
|
2351
2388
|
# @return [String]
|
2352
2389
|
#
|
2353
2390
|
# @!attribute [rw] endpoint_type
|
2354
|
-
# The type of endpoint.
|
2391
|
+
# The type of endpoint. Valid values are `source` and `target`.
|
2355
2392
|
# @return [String]
|
2356
2393
|
#
|
2357
2394
|
# @!attribute [rw] engine_name
|
2358
2395
|
# The database engine name. Valid values, depending on the
|
2359
|
-
#
|
2360
|
-
# aurora-postgresql, redshift, s3, db2, azuredb, sybase,
|
2361
|
-
#
|
2396
|
+
# EndpointType, include mysql, oracle, postgres, mariadb, aurora,
|
2397
|
+
# aurora-postgresql, redshift, s3, db2, azuredb, sybase, dynamodb,
|
2398
|
+
# mongodb, and sqlserver.
|
2362
2399
|
# @return [String]
|
2363
2400
|
#
|
2364
2401
|
# @!attribute [rw] engine_display_name
|
@@ -2392,9 +2429,12 @@ module Aws::DatabaseMigrationService
|
|
2392
2429
|
# @return [String]
|
2393
2430
|
#
|
2394
2431
|
# @!attribute [rw] kms_key_id
|
2395
|
-
#
|
2396
|
-
#
|
2397
|
-
#
|
2432
|
+
# An AWS KMS key identifier that is used to encrypt the connection
|
2433
|
+
# parameters for the endpoint.
|
2434
|
+
#
|
2435
|
+
# If you don't specify a value for the `KmsKeyId` parameter, then AWS
|
2436
|
+
# DMS uses your default encryption key.
|
2437
|
+
#
|
2398
2438
|
# AWS KMS creates the default encryption key for your AWS account.
|
2399
2439
|
# Your AWS account has a different default encryption key for each AWS
|
2400
2440
|
# Region.
|
@@ -2411,12 +2451,8 @@ module Aws::DatabaseMigrationService
|
|
2411
2451
|
# @return [String]
|
2412
2452
|
#
|
2413
2453
|
# @!attribute [rw] ssl_mode
|
2414
|
-
# The SSL mode used to connect to the endpoint.
|
2415
|
-
#
|
2416
|
-
# SSL mode can be one of four values: none, require, verify-ca,
|
2417
|
-
# verify-full.
|
2418
|
-
#
|
2419
|
-
# The default value is none.
|
2454
|
+
# The SSL mode used to connect to the endpoint. The default value is
|
2455
|
+
# `none`.
|
2420
2456
|
# @return [String]
|
2421
2457
|
#
|
2422
2458
|
# @!attribute [rw] service_access_role_arn
|
@@ -2482,7 +2518,7 @@ module Aws::DatabaseMigrationService
|
|
2482
2518
|
# @return [Types::ElasticsearchSettings]
|
2483
2519
|
#
|
2484
2520
|
# @!attribute [rw] redshift_settings
|
2485
|
-
# Settings for the Amazon Redshift endpoint
|
2521
|
+
# Settings for the Amazon Redshift endpoint.
|
2486
2522
|
# @return [Types::RedshiftSettings]
|
2487
2523
|
#
|
2488
2524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Endpoint AWS API Documentation
|
@@ -2516,17 +2552,13 @@ module Aws::DatabaseMigrationService
|
|
2516
2552
|
end
|
2517
2553
|
|
2518
2554
|
# @!attribute [rw] source_identifier
|
2519
|
-
# The identifier of
|
2520
|
-
# letter and must contain only ASCII letters, digits, and hyphens; it
|
2521
|
-
# cannot end with a hyphen or contain two consecutive hyphens.
|
2522
|
-
#
|
2523
|
-
# Constraints:replication instance, endpoint, migration task
|
2555
|
+
# The identifier of an event source.
|
2524
2556
|
# @return [String]
|
2525
2557
|
#
|
2526
2558
|
# @!attribute [rw] source_type
|
2527
2559
|
# The type of AWS DMS resource that generates events.
|
2528
2560
|
#
|
2529
|
-
# Valid values: replication-instance \| endpoint \|
|
2561
|
+
# Valid values: replication-instance \| endpoint \| replication-task
|
2530
2562
|
# @return [String]
|
2531
2563
|
#
|
2532
2564
|
# @!attribute [rw] message
|
@@ -2556,12 +2588,11 @@ module Aws::DatabaseMigrationService
|
|
2556
2588
|
# The type of AWS DMS resource that generates events.
|
2557
2589
|
#
|
2558
2590
|
# Valid values: replication-instance \| replication-server \|
|
2559
|
-
# security-group \|
|
2591
|
+
# security-group \| replication-task
|
2560
2592
|
# @return [String]
|
2561
2593
|
#
|
2562
2594
|
# @!attribute [rw] event_categories
|
2563
|
-
# A list of event categories
|
2564
|
-
# subscribe to.
|
2595
|
+
# A list of event categories from a source type that you've chosen.
|
2565
2596
|
# @return [Array<String>]
|
2566
2597
|
#
|
2567
2598
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/EventCategoryGroup AWS API Documentation
|
@@ -2607,7 +2638,7 @@ module Aws::DatabaseMigrationService
|
|
2607
2638
|
# The type of AWS DMS resource that generates events.
|
2608
2639
|
#
|
2609
2640
|
# Valid values: replication-instance \| replication-server \|
|
2610
|
-
# security-group \|
|
2641
|
+
# security-group \| replication-task
|
2611
2642
|
# @return [String]
|
2612
2643
|
#
|
2613
2644
|
# @!attribute [rw] source_ids_list
|
@@ -2677,16 +2708,17 @@ module Aws::DatabaseMigrationService
|
|
2677
2708
|
# }
|
2678
2709
|
#
|
2679
2710
|
# @!attribute [rw] certificate_identifier
|
2680
|
-
#
|
2681
|
-
#
|
2711
|
+
# A customer-assigned name for the certificate. Identifiers must begin
|
2712
|
+
# with a letter; must contain only ASCII letters, digits, and hyphens;
|
2713
|
+
# and must not end with a hyphen or contain two consecutive hyphens.
|
2682
2714
|
# @return [String]
|
2683
2715
|
#
|
2684
2716
|
# @!attribute [rw] certificate_pem
|
2685
|
-
# The contents of
|
2717
|
+
# The contents of a `.pem` file, which contains an X.509 certificate.
|
2686
2718
|
# @return [String]
|
2687
2719
|
#
|
2688
2720
|
# @!attribute [rw] certificate_wallet
|
2689
|
-
# The location of
|
2721
|
+
# The location of an imported Oracle Wallet certificate for use with
|
2690
2722
|
# SSL.
|
2691
2723
|
# @return [String]
|
2692
2724
|
#
|
@@ -2764,8 +2796,8 @@ module Aws::DatabaseMigrationService
|
|
2764
2796
|
include Aws::Structure
|
2765
2797
|
end
|
2766
2798
|
|
2767
|
-
# The ciphertext references a key that doesn't exist or DMS
|
2768
|
-
# doesn't have
|
2799
|
+
# The ciphertext references a key that doesn't exist or that the DMS
|
2800
|
+
# account doesn't have access to.
|
2769
2801
|
#
|
2770
2802
|
# @!attribute [rw] message
|
2771
2803
|
# @return [String]
|
@@ -2789,7 +2821,8 @@ module Aws::DatabaseMigrationService
|
|
2789
2821
|
include Aws::Structure
|
2790
2822
|
end
|
2791
2823
|
|
2792
|
-
# The state of the specified KMS resource isn't valid for this
|
2824
|
+
# The state of the specified AWS KMS resource isn't valid for this
|
2825
|
+
# request.
|
2793
2826
|
#
|
2794
2827
|
# @!attribute [rw] message
|
2795
2828
|
# @return [String]
|
@@ -2801,7 +2834,7 @@ module Aws::DatabaseMigrationService
|
|
2801
2834
|
include Aws::Structure
|
2802
2835
|
end
|
2803
2836
|
|
2804
|
-
# AWS DMS cannot access the KMS key.
|
2837
|
+
# AWS DMS cannot access the AWS KMS key.
|
2805
2838
|
#
|
2806
2839
|
# @!attribute [rw] message
|
2807
2840
|
# @return [String]
|
@@ -2813,7 +2846,7 @@ module Aws::DatabaseMigrationService
|
|
2813
2846
|
include Aws::Structure
|
2814
2847
|
end
|
2815
2848
|
|
2816
|
-
# The specified KMS entity or resource can't be found.
|
2849
|
+
# The specified AWS KMS entity or resource can't be found.
|
2817
2850
|
#
|
2818
2851
|
# @!attribute [rw] message
|
2819
2852
|
# @return [String]
|
@@ -2825,7 +2858,7 @@ module Aws::DatabaseMigrationService
|
|
2825
2858
|
include Aws::Structure
|
2826
2859
|
end
|
2827
2860
|
|
2828
|
-
# This request triggered KMS request throttling.
|
2861
|
+
# This request triggered AWS KMS request throttling.
|
2829
2862
|
#
|
2830
2863
|
# @!attribute [rw] message
|
2831
2864
|
# @return [String]
|
@@ -2938,7 +2971,9 @@ module Aws::DatabaseMigrationService
|
|
2938
2971
|
# data_page_size: 1,
|
2939
2972
|
# parquet_version: "parquet-1-0", # accepts parquet-1-0, parquet-2-0
|
2940
2973
|
# enable_statistics: false,
|
2974
|
+
# include_op_for_full_load: false,
|
2941
2975
|
# cdc_inserts_only: false,
|
2976
|
+
# timestamp_column_name: "String",
|
2942
2977
|
# },
|
2943
2978
|
# dms_transfer_settings: {
|
2944
2979
|
# service_access_role_arn: "String",
|
@@ -3010,14 +3045,14 @@ module Aws::DatabaseMigrationService
|
|
3010
3045
|
# @return [String]
|
3011
3046
|
#
|
3012
3047
|
# @!attribute [rw] endpoint_type
|
3013
|
-
# The type of endpoint.
|
3048
|
+
# The type of endpoint. Valid values are `source` and `target`.
|
3014
3049
|
# @return [String]
|
3015
3050
|
#
|
3016
3051
|
# @!attribute [rw] engine_name
|
3017
3052
|
# The type of engine for the endpoint. Valid values, depending on the
|
3018
|
-
#
|
3019
|
-
# aurora-postgresql, redshift, s3, db2, azuredb, sybase,
|
3020
|
-
#
|
3053
|
+
# EndpointType, include mysql, oracle, postgres, mariadb, aurora,
|
3054
|
+
# aurora-postgresql, redshift, s3, db2, azuredb, sybase, dynamodb,
|
3055
|
+
# mongodb, and sqlserver.
|
3021
3056
|
# @return [String]
|
3022
3057
|
#
|
3023
3058
|
# @!attribute [rw] username
|
@@ -3051,12 +3086,8 @@ module Aws::DatabaseMigrationService
|
|
3051
3086
|
# @return [String]
|
3052
3087
|
#
|
3053
3088
|
# @!attribute [rw] ssl_mode
|
3054
|
-
# The SSL mode to
|
3055
|
-
#
|
3056
|
-
# SSL mode can be one of four values: none, require, verify-ca,
|
3057
|
-
# verify-full.
|
3058
|
-
#
|
3059
|
-
# The default value is none.
|
3089
|
+
# The SSL mode used to connect to the endpoint. The default value is
|
3090
|
+
# `none`.
|
3060
3091
|
# @return [String]
|
3061
3092
|
#
|
3062
3093
|
# @!attribute [rw] service_access_role_arn
|
@@ -3215,7 +3246,7 @@ module Aws::DatabaseMigrationService
|
|
3215
3246
|
# The type of AWS DMS resource that generates the events you want to
|
3216
3247
|
# subscribe to.
|
3217
3248
|
#
|
3218
|
-
# Valid values: replication-instance \|
|
3249
|
+
# Valid values: replication-instance \| replication-task
|
3219
3250
|
# @return [String]
|
3220
3251
|
#
|
3221
3252
|
# @!attribute [rw] event_categories
|
@@ -3314,8 +3345,8 @@ module Aws::DatabaseMigrationService
|
|
3314
3345
|
# @return [String]
|
3315
3346
|
#
|
3316
3347
|
# @!attribute [rw] multi_az
|
3317
|
-
# Specifies
|
3318
|
-
# cannot set the `AvailabilityZone` parameter if the Multi-AZ
|
3348
|
+
# Specifies whether the replication instance is a Multi-AZ deployment.
|
3349
|
+
# You cannot set the `AvailabilityZone` parameter if the Multi-AZ
|
3319
3350
|
# parameter is set to `true`.
|
3320
3351
|
# @return [Boolean]
|
3321
3352
|
#
|
@@ -3325,12 +3356,12 @@ module Aws::DatabaseMigrationService
|
|
3325
3356
|
#
|
3326
3357
|
# @!attribute [rw] allow_major_version_upgrade
|
3327
3358
|
# Indicates that major version upgrades are allowed. Changing this
|
3328
|
-
# parameter does not result in an outage and the change is
|
3359
|
+
# parameter does not result in an outage, and the change is
|
3329
3360
|
# asynchronously applied as soon as possible.
|
3330
3361
|
#
|
3331
|
-
#
|
3332
|
-
#
|
3333
|
-
#
|
3362
|
+
# This parameter must be set to `true` when specifying a value for the
|
3363
|
+
# `EngineVersion` parameter that is a different major version than the
|
3364
|
+
# replication instance's current version.
|
3334
3365
|
# @return [Boolean]
|
3335
3366
|
#
|
3336
3367
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -3390,7 +3421,7 @@ module Aws::DatabaseMigrationService
|
|
3390
3421
|
# @return [String]
|
3391
3422
|
#
|
3392
3423
|
# @!attribute [rw] replication_subnet_group_description
|
3393
|
-
#
|
3424
|
+
# A description for the replication instance subnet group.
|
3394
3425
|
# @return [String]
|
3395
3426
|
#
|
3396
3427
|
# @!attribute [rw] subnet_ids
|
@@ -3448,18 +3479,15 @@ module Aws::DatabaseMigrationService
|
|
3448
3479
|
# @return [String]
|
3449
3480
|
#
|
3450
3481
|
# @!attribute [rw] migration_type
|
3451
|
-
# The migration type.
|
3452
|
-
#
|
3453
|
-
# Valid values: full-load \| cdc \| full-load-and-cdc
|
3482
|
+
# The migration type. Valid values: `full-load` \| `cdc` \|
|
3483
|
+
# `full-load-and-cdc`
|
3454
3484
|
# @return [String]
|
3455
3485
|
#
|
3456
3486
|
# @!attribute [rw] table_mappings
|
3457
3487
|
# When using the AWS CLI or boto3, provide the path of the JSON file
|
3458
|
-
# that contains the table mappings. Precede the path with
|
3488
|
+
# that contains the table mappings. Precede the path with `file://`.
|
3459
3489
|
# When working with the DMS API, provide the JSON as the parameter
|
3460
|
-
# value.
|
3461
|
-
#
|
3462
|
-
# For example, --table-mappings file://mappingfile.json
|
3490
|
+
# value, for example: `--table-mappings file://mappingfile.json`
|
3463
3491
|
# @return [String]
|
3464
3492
|
#
|
3465
3493
|
# @!attribute [rw] replication_task_settings
|
@@ -3683,9 +3711,19 @@ module Aws::DatabaseMigrationService
|
|
3683
3711
|
# @return [Integer]
|
3684
3712
|
#
|
3685
3713
|
# @!attribute [rw] availability_zones
|
3686
|
-
# List of
|
3714
|
+
# List of Availability Zones for this replication instance.
|
3687
3715
|
# @return [Array<String>]
|
3688
3716
|
#
|
3717
|
+
# @!attribute [rw] release_status
|
3718
|
+
# The value returned when the specified `EngineVersion` of the
|
3719
|
+
# replication instance is in Beta or test mode. This indicates some
|
3720
|
+
# features might not work as expected.
|
3721
|
+
#
|
3722
|
+
# <note markdown="1"> AWS DMS supports `ReleaseStatus` in versions 3.1.4 and later.
|
3723
|
+
#
|
3724
|
+
# </note>
|
3725
|
+
# @return [String]
|
3726
|
+
#
|
3689
3727
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OrderableReplicationInstance AWS API Documentation
|
3690
3728
|
#
|
3691
3729
|
class OrderableReplicationInstance < Struct.new(
|
@@ -3696,7 +3734,8 @@ module Aws::DatabaseMigrationService
|
|
3696
3734
|
:max_allocated_storage,
|
3697
3735
|
:default_allocated_storage,
|
3698
3736
|
:included_allocated_storage,
|
3699
|
-
:availability_zones
|
3737
|
+
:availability_zones,
|
3738
|
+
:release_status)
|
3700
3739
|
include Aws::Structure
|
3701
3740
|
end
|
3702
3741
|
|
@@ -3818,24 +3857,24 @@ module Aws::DatabaseMigrationService
|
|
3818
3857
|
# }
|
3819
3858
|
#
|
3820
3859
|
# @!attribute [rw] accept_any_date
|
3821
|
-
#
|
3822
|
-
# 00:00:00, to be loaded without generating
|
3823
|
-
#
|
3860
|
+
# A value that indicates to allow any date format, including invalid
|
3861
|
+
# formats such as 00/00/00 00:00:00, to be loaded without generating
|
3862
|
+
# an error. You can choose `true` or `false` (the default).
|
3824
3863
|
#
|
3825
3864
|
# This parameter applies only to TIMESTAMP and DATE columns. Always
|
3826
3865
|
# use ACCEPTANYDATE with the DATEFORMAT parameter. If the date format
|
3827
|
-
# for the data
|
3866
|
+
# for the data doesn't match the DATEFORMAT specification, Amazon
|
3828
3867
|
# Redshift inserts a NULL value into that field.
|
3829
3868
|
# @return [Boolean]
|
3830
3869
|
#
|
3831
3870
|
# @!attribute [rw] after_connect_script
|
3832
|
-
# Code to run after connecting. This should
|
3833
|
-
#
|
3871
|
+
# Code to run after connecting. This parameter should contain the code
|
3872
|
+
# itself, not the name of a file containing the code.
|
3834
3873
|
# @return [String]
|
3835
3874
|
#
|
3836
3875
|
# @!attribute [rw] bucket_folder
|
3837
|
-
# The location where the
|
3838
|
-
# the S3 bucket.
|
3876
|
+
# The location where the comma-separated value (.csv) files are stored
|
3877
|
+
# before being uploaded to the S3 bucket.
|
3839
3878
|
# @return [String]
|
3840
3879
|
#
|
3841
3880
|
# @!attribute [rw] bucket_name
|
@@ -3843,59 +3882,61 @@ module Aws::DatabaseMigrationService
|
|
3843
3882
|
# @return [String]
|
3844
3883
|
#
|
3845
3884
|
# @!attribute [rw] connection_timeout
|
3846
|
-
#
|
3847
|
-
# beginning from when you initially establish a
|
3885
|
+
# A value that sets the amount of time to wait (in milliseconds)
|
3886
|
+
# before timing out, beginning from when you initially establish a
|
3887
|
+
# connection.
|
3848
3888
|
# @return [Integer]
|
3849
3889
|
#
|
3850
3890
|
# @!attribute [rw] database_name
|
3851
|
-
# The name of the Amazon Redshift data warehouse (service) you
|
3852
|
-
# working with.
|
3891
|
+
# The name of the Amazon Redshift data warehouse (service) that you
|
3892
|
+
# are working with.
|
3853
3893
|
# @return [String]
|
3854
3894
|
#
|
3855
3895
|
# @!attribute [rw] date_format
|
3856
|
-
# The date format you are using. Valid values are `auto`
|
3896
|
+
# The date format that you are using. Valid values are `auto`
|
3857
3897
|
# (case-sensitive), your date format string enclosed in quotes, or
|
3858
|
-
# NULL. If this is left unset (NULL), it defaults to a
|
3859
|
-
# 'YYYY-MM-DD'. Using `auto` recognizes most strings, even
|
3860
|
-
#
|
3898
|
+
# NULL. If this parameter is left unset (NULL), it defaults to a
|
3899
|
+
# format of 'YYYY-MM-DD'. Using `auto` recognizes most strings, even
|
3900
|
+
# some that aren't supported when you use a date format string.
|
3861
3901
|
#
|
3862
3902
|
# If your date and time values use formats different from each other,
|
3863
3903
|
# set this to `auto`.
|
3864
3904
|
# @return [String]
|
3865
3905
|
#
|
3866
3906
|
# @!attribute [rw] empty_as_null
|
3867
|
-
#
|
3868
|
-
# fields as NULL. A value of
|
3869
|
-
# to null. The default is
|
3907
|
+
# A value that specifies whether AWS DMS should migrate empty CHAR and
|
3908
|
+
# VARCHAR fields as NULL. A value of `true` sets empty CHAR and
|
3909
|
+
# VARCHAR fields to null. The default is `false`.
|
3870
3910
|
# @return [Boolean]
|
3871
3911
|
#
|
3872
3912
|
# @!attribute [rw] encryption_mode
|
3873
|
-
# The type of server
|
3874
|
-
# This is part of the endpoint settings or the
|
3875
|
-
# attributes for Amazon S3. You can choose either
|
3876
|
-
#
|
3877
|
-
#
|
3878
|
-
# `"s3
|
3913
|
+
# The type of server-side encryption that you want to use for your
|
3914
|
+
# data. This encryption type is part of the endpoint settings or the
|
3915
|
+
# extra connections attributes for Amazon S3. You can choose either
|
3916
|
+
# `SSE_S3` (the default) or `SSE_KMS`. To use `SSE_S3`, create an AWS
|
3917
|
+
# Identity and Access Management (IAM) role with a policy that allows
|
3918
|
+
# `"arn:aws:s3:::*"` to use the following actions: `"s3:PutObject",
|
3919
|
+
# "s3:ListBucket"`
|
3879
3920
|
# @return [String]
|
3880
3921
|
#
|
3881
3922
|
# @!attribute [rw] file_transfer_upload_streams
|
3882
|
-
#
|
3883
|
-
# accepts a value
|
3923
|
+
# The number of threads used to upload a single file. This parameter
|
3924
|
+
# accepts a value from 1 through 64. It defaults to 10.
|
3884
3925
|
# @return [Integer]
|
3885
3926
|
#
|
3886
3927
|
# @!attribute [rw] load_timeout
|
3887
|
-
#
|
3928
|
+
# The amount of time to wait (in milliseconds) before timing out,
|
3888
3929
|
# beginning from when you begin loading.
|
3889
3930
|
# @return [Integer]
|
3890
3931
|
#
|
3891
3932
|
# @!attribute [rw] max_file_size
|
3892
|
-
#
|
3893
|
-
#
|
3894
|
-
#
|
3933
|
+
# The maximum size (in KB) of any .csv file used to transfer data to
|
3934
|
+
# Amazon Redshift. This accepts a value from 1 through 1,048,576. It
|
3935
|
+
# defaults to 32,768 KB (32 MB).
|
3895
3936
|
# @return [Integer]
|
3896
3937
|
#
|
3897
3938
|
# @!attribute [rw] password
|
3898
|
-
# The password for the user named in the username property.
|
3939
|
+
# The password for the user named in the `username` property.
|
3899
3940
|
# @return [String]
|
3900
3941
|
#
|
3901
3942
|
# @!attribute [rw] port
|
@@ -3903,19 +3944,21 @@ module Aws::DatabaseMigrationService
|
|
3903
3944
|
# @return [Integer]
|
3904
3945
|
#
|
3905
3946
|
# @!attribute [rw] remove_quotes
|
3906
|
-
#
|
3907
|
-
# data. All characters within the quotation
|
3908
|
-
# delimiters, are retained. Choose
|
3909
|
-
# default is
|
3947
|
+
# A value that specifies to remove surrounding quotation marks from
|
3948
|
+
# strings in the incoming data. All characters within the quotation
|
3949
|
+
# marks, including delimiters, are retained. Choose `true` to remove
|
3950
|
+
# quotation marks. The default is `false`.
|
3910
3951
|
# @return [Boolean]
|
3911
3952
|
#
|
3912
3953
|
# @!attribute [rw] replace_invalid_chars
|
3913
|
-
# A list of
|
3954
|
+
# A list of characters that you want to replace. Use with
|
3955
|
+
# `ReplaceChars`.
|
3914
3956
|
# @return [String]
|
3915
3957
|
#
|
3916
3958
|
# @!attribute [rw] replace_chars
|
3917
|
-
#
|
3918
|
-
# substituting the specified
|
3959
|
+
# A value that specifies to replaces the invalid characters specified
|
3960
|
+
# in `ReplaceInvalidChars`, substituting the specified characters
|
3961
|
+
# instead. The default is `"?"`.
|
3919
3962
|
# @return [String]
|
3920
3963
|
#
|
3921
3964
|
# @!attribute [rw] server_name
|
@@ -3923,37 +3966,41 @@ module Aws::DatabaseMigrationService
|
|
3923
3966
|
# @return [String]
|
3924
3967
|
#
|
3925
3968
|
# @!attribute [rw] service_access_role_arn
|
3926
|
-
# The ARN of the role that has access to
|
3969
|
+
# The Amazon Resource Name (ARN) of the IAM role that has access to
|
3970
|
+
# the Amazon Redshift service.
|
3927
3971
|
# @return [String]
|
3928
3972
|
#
|
3929
3973
|
# @!attribute [rw] server_side_encryption_kms_key_id
|
3930
|
-
# If you are using
|
3931
|
-
#
|
3932
|
-
# user permissions and allows use of
|
3974
|
+
# The AWS KMS key ID. If you are using `SSE_KMS` for the
|
3975
|
+
# `EncryptionMode`, provide this key ID. The key that you use needs an
|
3976
|
+
# attached policy that enables IAM user permissions and allows use of
|
3977
|
+
# the key.
|
3933
3978
|
# @return [String]
|
3934
3979
|
#
|
3935
3980
|
# @!attribute [rw] time_format
|
3936
|
-
# The time format you want to use. Valid values are `auto`
|
3937
|
-
# (case-sensitive), '
|
3938
|
-
# 'epochmillisecs'
|
3939
|
-
# strings, even some that
|
3981
|
+
# The time format that you want to use. Valid values are `auto`
|
3982
|
+
# (case-sensitive), `'timeformat_string'`, `'epochsecs'`, or
|
3983
|
+
# `'epochmillisecs'`. It defaults to 10. Using `auto` recognizes most
|
3984
|
+
# strings, even some that aren't supported when you use a time format
|
3940
3985
|
# string.
|
3941
3986
|
#
|
3942
3987
|
# If your date and time values use formats different from each other,
|
3943
|
-
# set this to `auto`.
|
3988
|
+
# set this parameter to `auto`.
|
3944
3989
|
# @return [String]
|
3945
3990
|
#
|
3946
3991
|
# @!attribute [rw] trim_blanks
|
3947
|
-
#
|
3948
|
-
# This parameter applies only to columns with a
|
3949
|
-
# Choose
|
3992
|
+
# A value that specifies to remove the trailing white space characters
|
3993
|
+
# from a VARCHAR string. This parameter applies only to columns with a
|
3994
|
+
# VARCHAR data type. Choose `true` to remove unneeded white space. The
|
3995
|
+
# default is `false`.
|
3950
3996
|
# @return [Boolean]
|
3951
3997
|
#
|
3952
3998
|
# @!attribute [rw] truncate_columns
|
3953
|
-
#
|
3954
|
-
# so that
|
3955
|
-
#
|
3956
|
-
#
|
3999
|
+
# A value that specifies to truncate data in columns to the
|
4000
|
+
# appropriate number of characters, so that the data fits in the
|
4001
|
+
# column. This parameter applies only to columns with a VARCHAR or
|
4002
|
+
# CHAR data type, and rows with a size of 4 MB or less. Choose `true`
|
4003
|
+
# to truncate data. The default is `false`.
|
3957
4004
|
# @return [Boolean]
|
3958
4005
|
#
|
3959
4006
|
# @!attribute [rw] username
|
@@ -3962,7 +4009,8 @@ module Aws::DatabaseMigrationService
|
|
3962
4009
|
#
|
3963
4010
|
# @!attribute [rw] write_buffer_size
|
3964
4011
|
# The size of the write buffer to use in rows. Valid values range from
|
3965
|
-
# 1
|
4012
|
+
# 1 through 2,048. The default is 1,024. Use this setting to tune
|
4013
|
+
# performance.
|
3966
4014
|
# @return [Integer]
|
3967
4015
|
#
|
3968
4016
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RedshiftSettings AWS API Documentation
|
@@ -4117,6 +4165,8 @@ module Aws::DatabaseMigrationService
|
|
4117
4165
|
include Aws::Structure
|
4118
4166
|
end
|
4119
4167
|
|
4168
|
+
# Removes one or more tags from an AWS DMS resource.
|
4169
|
+
#
|
4120
4170
|
# @note When making an API call, you may pass RemoveTagsFromResourceMessage
|
4121
4171
|
# data as a hash:
|
4122
4172
|
#
|
@@ -4126,8 +4176,8 @@ module Aws::DatabaseMigrationService
|
|
4126
4176
|
# }
|
4127
4177
|
#
|
4128
4178
|
# @!attribute [rw] resource_arn
|
4129
|
-
#
|
4130
|
-
# is
|
4179
|
+
# An AWS DMS resource from which you want to remove tag(s). The value
|
4180
|
+
# for this parameter is an Amazon Resource Name (ARN).
|
4131
4181
|
# @return [String]
|
4132
4182
|
#
|
4133
4183
|
# @!attribute [rw] tag_keys
|
@@ -4203,8 +4253,8 @@ module Aws::DatabaseMigrationService
|
|
4203
4253
|
# @return [Types::ReplicationPendingModifiedValues]
|
4204
4254
|
#
|
4205
4255
|
# @!attribute [rw] multi_az
|
4206
|
-
# Specifies
|
4207
|
-
# cannot set the `AvailabilityZone` parameter if the Multi-AZ
|
4256
|
+
# Specifies whether the replication instance is a Multi-AZ deployment.
|
4257
|
+
# You cannot set the `AvailabilityZone` parameter if the Multi-AZ
|
4208
4258
|
# parameter is set to `true`.
|
4209
4259
|
# @return [Boolean]
|
4210
4260
|
#
|
@@ -4218,9 +4268,12 @@ module Aws::DatabaseMigrationService
|
|
4218
4268
|
# @return [Boolean]
|
4219
4269
|
#
|
4220
4270
|
# @!attribute [rw] kms_key_id
|
4221
|
-
#
|
4222
|
-
#
|
4223
|
-
#
|
4271
|
+
# An AWS KMS key identifier that is used to encrypt the data on the
|
4272
|
+
# replication instance.
|
4273
|
+
#
|
4274
|
+
# If you don't specify a value for the `KmsKeyId` parameter, then AWS
|
4275
|
+
# DMS uses your default encryption key.
|
4276
|
+
#
|
4224
4277
|
# AWS KMS creates the default encryption key for your AWS account.
|
4225
4278
|
# Your AWS account has a different default encryption key for each AWS
|
4226
4279
|
# Region.
|
@@ -4239,11 +4292,11 @@ module Aws::DatabaseMigrationService
|
|
4239
4292
|
# @return [String]
|
4240
4293
|
#
|
4241
4294
|
# @!attribute [rw] replication_instance_public_ip_addresses
|
4242
|
-
#
|
4295
|
+
# One or more public IP addresses for the replication instance.
|
4243
4296
|
# @return [Array<String>]
|
4244
4297
|
#
|
4245
4298
|
# @!attribute [rw] replication_instance_private_ip_addresses
|
4246
|
-
#
|
4299
|
+
# One or more private IP addresses for the replication instance.
|
4247
4300
|
# @return [Array<String>]
|
4248
4301
|
#
|
4249
4302
|
# @!attribute [rw] publicly_accessible
|
@@ -4333,8 +4386,8 @@ module Aws::DatabaseMigrationService
|
|
4333
4386
|
# @return [Integer]
|
4334
4387
|
#
|
4335
4388
|
# @!attribute [rw] multi_az
|
4336
|
-
# Specifies
|
4337
|
-
# cannot set the `AvailabilityZone` parameter if the Multi-AZ
|
4389
|
+
# Specifies whether the replication instance is a Multi-AZ deployment.
|
4390
|
+
# You cannot set the `AvailabilityZone` parameter if the Multi-AZ
|
4338
4391
|
# parameter is set to `true`.
|
4339
4392
|
# @return [Boolean]
|
4340
4393
|
#
|
@@ -4357,7 +4410,7 @@ module Aws::DatabaseMigrationService
|
|
4357
4410
|
# @return [String]
|
4358
4411
|
#
|
4359
4412
|
# @!attribute [rw] replication_subnet_group_description
|
4360
|
-
#
|
4413
|
+
# A description for the replication subnet group.
|
4361
4414
|
# @return [String]
|
4362
4415
|
#
|
4363
4416
|
# @!attribute [rw] vpc_id
|
@@ -4457,9 +4510,9 @@ module Aws::DatabaseMigrationService
|
|
4457
4510
|
#
|
4458
4511
|
# @!attribute [rw] cdc_start_position
|
4459
4512
|
# Indicates when you want a change data capture (CDC) operation to
|
4460
|
-
# start. Use either CdcStartPosition or CdcStartTime to specify
|
4461
|
-
# you want
|
4462
|
-
# an error.
|
4513
|
+
# start. Use either `CdcStartPosition` or `CdcStartTime` to specify
|
4514
|
+
# when you want the CDC operation to start. Specifying both values
|
4515
|
+
# results in an error.
|
4463
4516
|
#
|
4464
4517
|
# The value can be in date, checkpoint, or LSN/SCN format.
|
4465
4518
|
#
|
@@ -4632,12 +4685,12 @@ module Aws::DatabaseMigrationService
|
|
4632
4685
|
# @!attribute [rw] resource_identifier
|
4633
4686
|
# The Amazon Resource Name (ARN) of the DMS resource that the pending
|
4634
4687
|
# maintenance action applies to. For information about creating an
|
4635
|
-
# ARN, see [ Constructing an Amazon Resource Name (ARN)
|
4636
|
-
# documentation.
|
4688
|
+
# ARN, see [ Constructing an Amazon Resource Name (ARN) for AWS
|
4689
|
+
# DMS][1] in the DMS documentation.
|
4637
4690
|
#
|
4638
4691
|
#
|
4639
4692
|
#
|
4640
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/
|
4693
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Introduction.AWS.ARN.html
|
4641
4694
|
# @return [String]
|
4642
4695
|
#
|
4643
4696
|
# @!attribute [rw] pending_maintenance_action_details
|
@@ -4686,7 +4739,9 @@ module Aws::DatabaseMigrationService
|
|
4686
4739
|
# data_page_size: 1,
|
4687
4740
|
# parquet_version: "parquet-1-0", # accepts parquet-1-0, parquet-2-0
|
4688
4741
|
# enable_statistics: false,
|
4742
|
+
# include_op_for_full_load: false,
|
4689
4743
|
# cdc_inserts_only: false,
|
4744
|
+
# timestamp_column_name: "String",
|
4690
4745
|
# }
|
4691
4746
|
#
|
4692
4747
|
# @!attribute [rw] service_access_role_arn
|
@@ -4709,9 +4764,9 @@ module Aws::DatabaseMigrationService
|
|
4709
4764
|
#
|
4710
4765
|
# @!attribute [rw] bucket_folder
|
4711
4766
|
# An optional parameter to set a folder name in the S3 bucket. If
|
4712
|
-
# provided, tables are created in the path
|
4713
|
-
#
|
4714
|
-
#
|
4767
|
+
# provided, tables are created in the path `
|
4768
|
+
# bucketFolder/schema_name/table_name/`. If this parameter is not
|
4769
|
+
# specified, then the path used is ` schema_name/table_name/`.
|
4715
4770
|
# @return [String]
|
4716
4771
|
#
|
4717
4772
|
# @!attribute [rw] bucket_name
|
@@ -4721,70 +4776,74 @@ module Aws::DatabaseMigrationService
|
|
4721
4776
|
# @!attribute [rw] compression_type
|
4722
4777
|
# An optional parameter to use GZIP to compress the target files. Set
|
4723
4778
|
# to GZIP to compress the target files. Set to NONE (the default) or
|
4724
|
-
# do not use to leave the files uncompressed. Applies to both
|
4725
|
-
#
|
4779
|
+
# do not use to leave the files uncompressed. Applies to both .csv and
|
4780
|
+
# .parquet file formats.
|
4726
4781
|
# @return [String]
|
4727
4782
|
#
|
4728
4783
|
# @!attribute [rw] encryption_mode
|
4729
|
-
# The type of server
|
4730
|
-
# This is part of the endpoint settings or the
|
4731
|
-
# attributes for Amazon S3. You can choose either
|
4732
|
-
# or `SSE_KMS`. To use `SSE_S3`, you need an
|
4733
|
-
#
|
4784
|
+
# The type of server-side encryption that you want to use for your
|
4785
|
+
# data. This encryption type is part of the endpoint settings or the
|
4786
|
+
# extra connections attributes for Amazon S3. You can choose either
|
4787
|
+
# `SSE_S3` (the default) or `SSE_KMS`. To use `SSE_S3`, you need an
|
4788
|
+
# AWS Identity and Access Management (IAM) role with permission to
|
4789
|
+
# allow `"arn:aws:s3:::dms-*"` to use the following actions:
|
4734
4790
|
#
|
4735
|
-
# * s3:CreateBucket
|
4791
|
+
# * `s3:CreateBucket`
|
4736
4792
|
#
|
4737
|
-
# * s3:ListBucket
|
4793
|
+
# * `s3:ListBucket`
|
4738
4794
|
#
|
4739
|
-
# * s3:DeleteBucket
|
4795
|
+
# * `s3:DeleteBucket`
|
4740
4796
|
#
|
4741
|
-
# * s3:GetBucketLocation
|
4797
|
+
# * `s3:GetBucketLocation`
|
4742
4798
|
#
|
4743
|
-
# * s3:GetObject
|
4799
|
+
# * `s3:GetObject`
|
4744
4800
|
#
|
4745
|
-
# * s3:PutObject
|
4801
|
+
# * `s3:PutObject`
|
4746
4802
|
#
|
4747
|
-
# * s3:DeleteObject
|
4803
|
+
# * `s3:DeleteObject`
|
4748
4804
|
#
|
4749
|
-
# * s3:GetObjectVersion
|
4805
|
+
# * `s3:GetObjectVersion`
|
4750
4806
|
#
|
4751
|
-
# * s3:GetBucketPolicy
|
4807
|
+
# * `s3:GetBucketPolicy`
|
4752
4808
|
#
|
4753
|
-
# * s3:PutBucketPolicy
|
4809
|
+
# * `s3:PutBucketPolicy`
|
4754
4810
|
#
|
4755
|
-
# * s3:DeleteBucketPolicy
|
4811
|
+
# * `s3:DeleteBucketPolicy`
|
4756
4812
|
# @return [String]
|
4757
4813
|
#
|
4758
4814
|
# @!attribute [rw] server_side_encryption_kms_key_id
|
4759
|
-
# If you are using
|
4760
|
-
#
|
4761
|
-
#
|
4815
|
+
# If you are using `SSE_KMS` for the `EncryptionMode`, provide the AWS
|
4816
|
+
# KMS key ID. The key that you use needs an attached policy that
|
4817
|
+
# enables AWS Identity and Access Management (IAM) user permissions
|
4818
|
+
# and allows use of the key.
|
4762
4819
|
#
|
4763
4820
|
# Here is a CLI example: `aws dms create-endpoint
|
4764
|
-
# --endpoint-identifier
|
4765
|
-
#
|
4766
|
-
# ServiceAccessRoleArn
|
4821
|
+
# --endpoint-identifier value --endpoint-type target --engine-name s3
|
4822
|
+
# --s3-settings
|
4823
|
+
# ServiceAccessRoleArn=value,BucketFolder=value,BucketName=value,EncryptionMode=SSE_KMS,ServerSideEncryptionKmsKeyId=value
|
4767
4824
|
# `
|
4768
4825
|
# @return [String]
|
4769
4826
|
#
|
4770
4827
|
# @!attribute [rw] data_format
|
4771
|
-
# The format of the data
|
4828
|
+
# The format of the data that you want to use for output. You can
|
4772
4829
|
# choose one of the following:
|
4773
4830
|
#
|
4774
|
-
# * `
|
4831
|
+
# * `csv`\: This is a row-based file format with comma-separated
|
4832
|
+
# values (.csv).
|
4775
4833
|
#
|
4776
|
-
# * `
|
4777
|
-
# features efficient compression and provides faster
|
4834
|
+
# * `parquet`\: Apache Parquet (.parquet) is a columnar storage file
|
4835
|
+
# format that features efficient compression and provides faster
|
4836
|
+
# query response.
|
4778
4837
|
# @return [String]
|
4779
4838
|
#
|
4780
4839
|
# @!attribute [rw] encoding_type
|
4781
|
-
# The type of encoding you are using:
|
4782
|
-
# `PLAIN`, or `PLAIN_DICTIONARY`.
|
4840
|
+
# The type of encoding you are using:
|
4783
4841
|
#
|
4784
4842
|
# * `RLE_DICTIONARY` uses a combination of bit-packing and run-length
|
4785
|
-
# encoding to store repeated values more efficiently.
|
4843
|
+
# encoding to store repeated values more efficiently. This is the
|
4844
|
+
# default.
|
4786
4845
|
#
|
4787
|
-
# * `PLAIN`
|
4846
|
+
# * `PLAIN` doesn't use encoding at all. Values are stored as they
|
4788
4847
|
# are.
|
4789
4848
|
#
|
4790
4849
|
# * `PLAIN_DICTIONARY` builds a dictionary of the values encountered
|
@@ -4795,48 +4854,122 @@ module Aws::DatabaseMigrationService
|
|
4795
4854
|
# @!attribute [rw] dict_page_size_limit
|
4796
4855
|
# The maximum size of an encoded dictionary page of a column. If the
|
4797
4856
|
# dictionary page exceeds this, this column is stored using an
|
4798
|
-
# encoding type of `PLAIN`.
|
4799
|
-
# maximum size of a dictionary page before it
|
4800
|
-
#
|
4857
|
+
# encoding type of `PLAIN`. This parameter defaults to 1024 * 1024
|
4858
|
+
# bytes (1 MiB), the maximum size of a dictionary page before it
|
4859
|
+
# reverts to `PLAIN` encoding. This size is used for .parquet file
|
4860
|
+
# format only.
|
4801
4861
|
# @return [Integer]
|
4802
4862
|
#
|
4803
4863
|
# @!attribute [rw] row_group_length
|
4804
4864
|
# The number of rows in a row group. A smaller row group size provides
|
4805
4865
|
# faster reads. But as the number of row groups grows, the slower
|
4806
|
-
# writes become.
|
4807
|
-
# format only.
|
4866
|
+
# writes become. This parameter defaults to 10,000 rows. This number
|
4867
|
+
# is used for .parquet file format only.
|
4808
4868
|
#
|
4809
4869
|
# If you choose a value larger than the maximum, `RowGroupLength` is
|
4810
4870
|
# set to the max row group length in bytes (64 * 1024 * 1024).
|
4811
4871
|
# @return [Integer]
|
4812
4872
|
#
|
4813
4873
|
# @!attribute [rw] data_page_size
|
4814
|
-
# The size of one data page in bytes.
|
4815
|
-
# (
|
4874
|
+
# The size of one data page in bytes. This parameter defaults to 1024
|
4875
|
+
# * 1024 bytes (1 MiB). This number is used for .parquet file format
|
4876
|
+
# only.
|
4816
4877
|
# @return [Integer]
|
4817
4878
|
#
|
4818
4879
|
# @!attribute [rw] parquet_version
|
4819
|
-
# The version of Apache Parquet format you want to use:
|
4820
|
-
# (default) or `
|
4880
|
+
# The version of the Apache Parquet format that you want to use:
|
4881
|
+
# `parquet_1_0` (the default) or `parquet_2_0`.
|
4821
4882
|
# @return [String]
|
4822
4883
|
#
|
4823
4884
|
# @!attribute [rw] enable_statistics
|
4824
|
-
#
|
4825
|
-
# enable statistics,
|
4826
|
-
# `NULL`, `DISTINCT`, `MAX`, and `MIN` values.
|
4827
|
-
# `
|
4885
|
+
# A value that enables statistics for Parquet pages and row groups.
|
4886
|
+
# Choose `true` to enable statistics, `false` to disable. Statistics
|
4887
|
+
# include `NULL`, `DISTINCT`, `MAX`, and `MIN` values. This parameter
|
4888
|
+
# defaults to `true`. This value is used for .parquet file format
|
4889
|
+
# only.
|
4890
|
+
# @return [Boolean]
|
4891
|
+
#
|
4892
|
+
# @!attribute [rw] include_op_for_full_load
|
4893
|
+
# A value that enables a full load to write INSERT operations to the
|
4894
|
+
# comma-separated value (.csv) output files only to indicate how the
|
4895
|
+
# rows were added to the source database.
|
4896
|
+
#
|
4897
|
+
# <note markdown="1"> AWS DMS supports `IncludeOpForFullLoad` in versions 3.1.4 and later.
|
4898
|
+
#
|
4899
|
+
# </note>
|
4900
|
+
#
|
4901
|
+
# For full load, records can only be inserted. By default (the `false`
|
4902
|
+
# setting), no information is recorded in these output files for a
|
4903
|
+
# full load to indicate that the rows were inserted at the source
|
4904
|
+
# database. If `IncludeOpForFullLoad` is set to `true` or `y`, the
|
4905
|
+
# INSERT is recorded as an I annotation in the first field of the .csv
|
4906
|
+
# file. This allows the format of your target records from a full load
|
4907
|
+
# to be consistent with the target records from a CDC load.
|
4908
|
+
#
|
4909
|
+
# <note markdown="1"> This setting works together with `CdcInsertsOnly` for output to .csv
|
4910
|
+
# files only. For more information about how these settings work
|
4911
|
+
# together, see [Indicating Source DB Operations in Migrated S3
|
4912
|
+
# Data][1] in the *AWS Database Migration Service User Guide.*.
|
4913
|
+
#
|
4914
|
+
# </note>
|
4915
|
+
#
|
4916
|
+
#
|
4917
|
+
#
|
4918
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.Configuring.InsertOps
|
4828
4919
|
# @return [Boolean]
|
4829
4920
|
#
|
4830
4921
|
# @!attribute [rw] cdc_inserts_only
|
4831
|
-
#
|
4832
|
-
#
|
4833
|
-
#
|
4834
|
-
#
|
4835
|
-
#
|
4836
|
-
#
|
4837
|
-
#
|
4922
|
+
# A value that enables a change data capture (CDC) load to write only
|
4923
|
+
# INSERT operations to .csv or columnar storage (.parquet) output
|
4924
|
+
# files. By default (the `false` setting), the first field in a .csv
|
4925
|
+
# or .parquet record contains the letter I (INSERT), U (UPDATE), or D
|
4926
|
+
# (DELETE). These values indicate whether the row was inserted,
|
4927
|
+
# updated, or deleted at the source database for a CDC load to the
|
4928
|
+
# target.
|
4929
|
+
#
|
4930
|
+
# If `cdcInsertsOnly` is set to `true` or `y`, only INSERTs from the
|
4931
|
+
# source database are migrated to the .csv or .parquet file. For .csv
|
4932
|
+
# format only, how these INSERTs are recorded depends on the value of
|
4933
|
+
# `IncludeOpForFullLoad`. If `IncludeOpForFullLoad` is set to `true`,
|
4934
|
+
# the first field of every CDC record is set to I to indicate the
|
4935
|
+
# INSERT operation at the source. If `IncludeOpForFullLoad` is set to
|
4936
|
+
# `false`, every CDC record is written without a first field to
|
4937
|
+
# indicate the INSERT operation at the source. For more information
|
4938
|
+
# about how these settings work together, see [Indicating Source DB
|
4939
|
+
# Operations in Migrated S3 Data][1] in the *AWS Database Migration
|
4940
|
+
# Service User Guide.*.
|
4941
|
+
#
|
4942
|
+
# <note markdown="1"> AWS DMS supports this interaction between `CdcInsertsOnly` and
|
4943
|
+
# `IncludeOpForFullLoad` in versions 3.1.4 and later.
|
4944
|
+
#
|
4945
|
+
# </note>
|
4946
|
+
#
|
4947
|
+
#
|
4948
|
+
#
|
4949
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.Configuring.InsertOps
|
4838
4950
|
# @return [Boolean]
|
4839
4951
|
#
|
4952
|
+
# @!attribute [rw] timestamp_column_name
|
4953
|
+
# A value that includes a timestamp column in the Amazon S3 target
|
4954
|
+
# endpoint data. AWS DMS includes an additional column in the migrated
|
4955
|
+
# data when you set `timestampColumnName` to a non-blank value.
|
4956
|
+
#
|
4957
|
+
# <note markdown="1"> AWS DMS supports `TimestampColumnName` in versions 3.1.4 and later.
|
4958
|
+
#
|
4959
|
+
# </note>
|
4960
|
+
#
|
4961
|
+
# For a full load, each row of the timestamp column contains a
|
4962
|
+
# timestamp for when the data was transferred from the source to the
|
4963
|
+
# target by DMS. For a CDC load, each row of the timestamp column
|
4964
|
+
# contains the timestamp for the commit of that row in the source
|
4965
|
+
# database. The format for the timestamp column value is `yyyy-MM-dd
|
4966
|
+
# HH:mm:ss.SSSSSS`. For CDC, the microsecond precision depends on the
|
4967
|
+
# commit timestamp supported by DMS for the source database. When the
|
4968
|
+
# `AddColumnName` setting is set to `true`, DMS also includes the name
|
4969
|
+
# for the timestamp column that you set as the nonblank value of
|
4970
|
+
# `timestampColumnName`.
|
4971
|
+
# @return [String]
|
4972
|
+
#
|
4840
4973
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/S3Settings AWS API Documentation
|
4841
4974
|
#
|
4842
4975
|
class S3Settings < Struct.new(
|
@@ -4856,7 +4989,9 @@ module Aws::DatabaseMigrationService
|
|
4856
4989
|
:data_page_size,
|
4857
4990
|
:parquet_version,
|
4858
4991
|
:enable_statistics,
|
4859
|
-
:
|
4992
|
+
:include_op_for_full_load,
|
4993
|
+
:cdc_inserts_only,
|
4994
|
+
:timestamp_column_name)
|
4860
4995
|
include Aws::Structure
|
4861
4996
|
end
|
4862
4997
|
|
@@ -5067,9 +5202,9 @@ module Aws::DatabaseMigrationService
|
|
5067
5202
|
|
5068
5203
|
# @!attribute [rw] engine_name
|
5069
5204
|
# The database engine name. Valid values, depending on the
|
5070
|
-
#
|
5071
|
-
# aurora-postgresql, redshift, s3, db2, azuredb, sybase,
|
5072
|
-
#
|
5205
|
+
# EndpointType, include mysql, oracle, postgres, mariadb, aurora,
|
5206
|
+
# aurora-postgresql, redshift, s3, db2, azuredb, sybase, dynamodb,
|
5207
|
+
# mongodb, and sqlserver.
|
5073
5208
|
# @return [String]
|
5074
5209
|
#
|
5075
5210
|
# @!attribute [rw] supports_cdc
|
@@ -5077,7 +5212,7 @@ module Aws::DatabaseMigrationService
|
|
5077
5212
|
# @return [Boolean]
|
5078
5213
|
#
|
5079
5214
|
# @!attribute [rw] endpoint_type
|
5080
|
-
# The type of endpoint.
|
5215
|
+
# The type of endpoint. Valid values are `source` and `target`.
|
5081
5216
|
# @return [String]
|
5082
5217
|
#
|
5083
5218
|
# @!attribute [rw] engine_display_name
|