aws-sdk-databasemigrationservice 1.110.0 → 1.112.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +119 -4
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +27 -6
- data/lib/aws-sdk-databasemigrationservice/types.rb +165 -30
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/sig/client.rbs +34 -12
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +16 -1
- metadata +4 -4
@@ -282,6 +282,7 @@ module Aws::DatabaseMigrationService
|
|
282
282
|
KafkaSecurityProtocol = Shapes::StringShape.new(name: 'KafkaSecurityProtocol')
|
283
283
|
KafkaSettings = Shapes::StructureShape.new(name: 'KafkaSettings')
|
284
284
|
KafkaSslEndpointIdentificationAlgorithm = Shapes::StringShape.new(name: 'KafkaSslEndpointIdentificationAlgorithm')
|
285
|
+
KerberosAuthenticationSettings = Shapes::StructureShape.new(name: 'KerberosAuthenticationSettings')
|
285
286
|
KeyList = Shapes::ListShape.new(name: 'KeyList')
|
286
287
|
KinesisSettings = Shapes::StructureShape.new(name: 'KinesisSettings')
|
287
288
|
Limitation = Shapes::StructureShape.new(name: 'Limitation')
|
@@ -329,6 +330,7 @@ module Aws::DatabaseMigrationService
|
|
329
330
|
MySqlDataProviderSettings = Shapes::StructureShape.new(name: 'MySqlDataProviderSettings')
|
330
331
|
NeptuneSettings = Shapes::StructureShape.new(name: 'NeptuneSettings')
|
331
332
|
NestingLevelValue = Shapes::StringShape.new(name: 'NestingLevelValue')
|
333
|
+
OracleAuthenticationMethod = Shapes::StringShape.new(name: 'OracleAuthenticationMethod')
|
332
334
|
OracleDataProviderSettings = Shapes::StructureShape.new(name: 'OracleDataProviderSettings')
|
333
335
|
OracleSettings = Shapes::StructureShape.new(name: 'OracleSettings')
|
334
336
|
OrderableReplicationInstance = Shapes::StructureShape.new(name: 'OrderableReplicationInstance')
|
@@ -373,6 +375,7 @@ module Aws::DatabaseMigrationService
|
|
373
375
|
ReplicationConfigList = Shapes::ListShape.new(name: 'ReplicationConfigList')
|
374
376
|
ReplicationEndpointTypeValue = Shapes::StringShape.new(name: 'ReplicationEndpointTypeValue')
|
375
377
|
ReplicationInstance = Shapes::StructureShape.new(name: 'ReplicationInstance')
|
378
|
+
ReplicationInstanceClass = Shapes::StringShape.new(name: 'ReplicationInstanceClass')
|
376
379
|
ReplicationInstanceIpv6AddressList = Shapes::ListShape.new(name: 'ReplicationInstanceIpv6AddressList')
|
377
380
|
ReplicationInstanceList = Shapes::ListShape.new(name: 'ReplicationInstanceList')
|
378
381
|
ReplicationInstancePrivateIpAddressList = Shapes::ListShape.new(name: 'ReplicationInstancePrivateIpAddressList')
|
@@ -421,6 +424,7 @@ module Aws::DatabaseMigrationService
|
|
421
424
|
SourceDataSettings = Shapes::ListShape.new(name: 'SourceDataSettings')
|
422
425
|
SourceIdsList = Shapes::ListShape.new(name: 'SourceIdsList')
|
423
426
|
SourceType = Shapes::StringShape.new(name: 'SourceType')
|
427
|
+
SqlServerAuthenticationMethod = Shapes::StringShape.new(name: 'SqlServerAuthenticationMethod')
|
424
428
|
SslSecurityProtocolValue = Shapes::StringShape.new(name: 'SslSecurityProtocolValue')
|
425
429
|
StartDataMigrationMessage = Shapes::StructureShape.new(name: 'StartDataMigrationMessage')
|
426
430
|
StartDataMigrationResponse = Shapes::StructureShape.new(name: 'StartDataMigrationResponse')
|
@@ -739,7 +743,7 @@ module Aws::DatabaseMigrationService
|
|
739
743
|
|
740
744
|
CreateReplicationInstanceMessage.add_member(:replication_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationInstanceIdentifier"))
|
741
745
|
CreateReplicationInstanceMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
742
|
-
CreateReplicationInstanceMessage.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape:
|
746
|
+
CreateReplicationInstanceMessage.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: ReplicationInstanceClass, required: true, location_name: "ReplicationInstanceClass"))
|
743
747
|
CreateReplicationInstanceMessage.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: VpcSecurityGroupIdList, location_name: "VpcSecurityGroupIds"))
|
744
748
|
CreateReplicationInstanceMessage.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone"))
|
745
749
|
CreateReplicationInstanceMessage.add_member(:replication_subnet_group_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationSubnetGroupIdentifier"))
|
@@ -753,6 +757,7 @@ module Aws::DatabaseMigrationService
|
|
753
757
|
CreateReplicationInstanceMessage.add_member(:dns_name_servers, Shapes::ShapeRef.new(shape: String, location_name: "DnsNameServers"))
|
754
758
|
CreateReplicationInstanceMessage.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ResourceIdentifier"))
|
755
759
|
CreateReplicationInstanceMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
760
|
+
CreateReplicationInstanceMessage.add_member(:kerberos_authentication_settings, Shapes::ShapeRef.new(shape: KerberosAuthenticationSettings, location_name: "KerberosAuthenticationSettings"))
|
756
761
|
CreateReplicationInstanceMessage.struct_class = Types::CreateReplicationInstanceMessage
|
757
762
|
|
758
763
|
CreateReplicationInstanceResponse.add_member(:replication_instance, Shapes::ShapeRef.new(shape: ReplicationInstance, location_name: "ReplicationInstance"))
|
@@ -1702,8 +1707,14 @@ module Aws::DatabaseMigrationService
|
|
1702
1707
|
KafkaSettings.add_member(:no_hex_prefix, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "NoHexPrefix"))
|
1703
1708
|
KafkaSettings.add_member(:sasl_mechanism, Shapes::ShapeRef.new(shape: KafkaSaslMechanism, location_name: "SaslMechanism"))
|
1704
1709
|
KafkaSettings.add_member(:ssl_endpoint_identification_algorithm, Shapes::ShapeRef.new(shape: KafkaSslEndpointIdentificationAlgorithm, location_name: "SslEndpointIdentificationAlgorithm"))
|
1710
|
+
KafkaSettings.add_member(:use_large_integer_value, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseLargeIntegerValue"))
|
1705
1711
|
KafkaSettings.struct_class = Types::KafkaSettings
|
1706
1712
|
|
1713
|
+
KerberosAuthenticationSettings.add_member(:key_cache_secret_id, Shapes::ShapeRef.new(shape: String, location_name: "KeyCacheSecretId"))
|
1714
|
+
KerberosAuthenticationSettings.add_member(:key_cache_secret_iam_arn, Shapes::ShapeRef.new(shape: String, location_name: "KeyCacheSecretIamArn"))
|
1715
|
+
KerberosAuthenticationSettings.add_member(:krb_5_file_contents, Shapes::ShapeRef.new(shape: String, location_name: "Krb5FileContents"))
|
1716
|
+
KerberosAuthenticationSettings.struct_class = Types::KerberosAuthenticationSettings
|
1717
|
+
|
1707
1718
|
KeyList.member = Shapes::ShapeRef.new(shape: String)
|
1708
1719
|
|
1709
1720
|
KinesisSettings.add_member(:stream_arn, Shapes::ShapeRef.new(shape: String, location_name: "StreamArn"))
|
@@ -1716,6 +1727,7 @@ module Aws::DatabaseMigrationService
|
|
1716
1727
|
KinesisSettings.add_member(:include_control_details, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IncludeControlDetails"))
|
1717
1728
|
KinesisSettings.add_member(:include_null_and_empty, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IncludeNullAndEmpty"))
|
1718
1729
|
KinesisSettings.add_member(:no_hex_prefix, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "NoHexPrefix"))
|
1730
|
+
KinesisSettings.add_member(:use_large_integer_value, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseLargeIntegerValue"))
|
1719
1731
|
KinesisSettings.struct_class = Types::KinesisSettings
|
1720
1732
|
|
1721
1733
|
Limitation.add_member(:database_id, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseId"))
|
@@ -1758,6 +1770,7 @@ module Aws::DatabaseMigrationService
|
|
1758
1770
|
MicrosoftSQLServerSettings.add_member(:trim_space_in_char, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TrimSpaceInChar"))
|
1759
1771
|
MicrosoftSQLServerSettings.add_member(:tlog_access_mode, Shapes::ShapeRef.new(shape: TlogAccessMode, location_name: "TlogAccessMode"))
|
1760
1772
|
MicrosoftSQLServerSettings.add_member(:force_lob_lookup, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ForceLobLookup"))
|
1773
|
+
MicrosoftSQLServerSettings.add_member(:authentication_method, Shapes::ShapeRef.new(shape: SqlServerAuthenticationMethod, location_name: "AuthenticationMethod"))
|
1761
1774
|
MicrosoftSQLServerSettings.struct_class = Types::MicrosoftSQLServerSettings
|
1762
1775
|
|
1763
1776
|
MicrosoftSqlServerDataProviderSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
|
@@ -1905,7 +1918,7 @@ module Aws::DatabaseMigrationService
|
|
1905
1918
|
ModifyReplicationInstanceMessage.add_member(:replication_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationInstanceArn"))
|
1906
1919
|
ModifyReplicationInstanceMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
1907
1920
|
ModifyReplicationInstanceMessage.add_member(:apply_immediately, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApplyImmediately"))
|
1908
|
-
ModifyReplicationInstanceMessage.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape:
|
1921
|
+
ModifyReplicationInstanceMessage.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: ReplicationInstanceClass, location_name: "ReplicationInstanceClass"))
|
1909
1922
|
ModifyReplicationInstanceMessage.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: VpcSecurityGroupIdList, location_name: "VpcSecurityGroupIds"))
|
1910
1923
|
ModifyReplicationInstanceMessage.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredMaintenanceWindow"))
|
1911
1924
|
ModifyReplicationInstanceMessage.add_member(:multi_az, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZ"))
|
@@ -1914,6 +1927,7 @@ module Aws::DatabaseMigrationService
|
|
1914
1927
|
ModifyReplicationInstanceMessage.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
|
1915
1928
|
ModifyReplicationInstanceMessage.add_member(:replication_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceIdentifier"))
|
1916
1929
|
ModifyReplicationInstanceMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1930
|
+
ModifyReplicationInstanceMessage.add_member(:kerberos_authentication_settings, Shapes::ShapeRef.new(shape: KerberosAuthenticationSettings, location_name: "KerberosAuthenticationSettings"))
|
1917
1931
|
ModifyReplicationInstanceMessage.struct_class = Types::ModifyReplicationInstanceMessage
|
1918
1932
|
|
1919
1933
|
ModifyReplicationInstanceResponse.add_member(:replication_instance, Shapes::ShapeRef.new(shape: ReplicationInstance, location_name: "ReplicationInstance"))
|
@@ -2063,10 +2077,11 @@ module Aws::DatabaseMigrationService
|
|
2063
2077
|
OracleSettings.add_member(:trim_space_in_char, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TrimSpaceInChar"))
|
2064
2078
|
OracleSettings.add_member(:convert_timestamp_with_zone_to_utc, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ConvertTimestampWithZoneToUTC"))
|
2065
2079
|
OracleSettings.add_member(:open_transaction_window, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "OpenTransactionWindow"))
|
2080
|
+
OracleSettings.add_member(:authentication_method, Shapes::ShapeRef.new(shape: OracleAuthenticationMethod, location_name: "AuthenticationMethod"))
|
2066
2081
|
OracleSettings.struct_class = Types::OracleSettings
|
2067
2082
|
|
2068
2083
|
OrderableReplicationInstance.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
2069
|
-
OrderableReplicationInstance.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape:
|
2084
|
+
OrderableReplicationInstance.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: ReplicationInstanceClass, location_name: "ReplicationInstanceClass"))
|
2070
2085
|
OrderableReplicationInstance.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
2071
2086
|
OrderableReplicationInstance.add_member(:min_allocated_storage, Shapes::ShapeRef.new(shape: Integer, location_name: "MinAllocatedStorage"))
|
2072
2087
|
OrderableReplicationInstance.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxAllocatedStorage"))
|
@@ -2114,6 +2129,7 @@ module Aws::DatabaseMigrationService
|
|
2114
2129
|
PostgreSQLSettings.add_member(:map_long_varchar_as, Shapes::ShapeRef.new(shape: LongVarcharMappingType, location_name: "MapLongVarcharAs"))
|
2115
2130
|
PostgreSQLSettings.add_member(:database_mode, Shapes::ShapeRef.new(shape: DatabaseMode, location_name: "DatabaseMode"))
|
2116
2131
|
PostgreSQLSettings.add_member(:babelfish_database_name, Shapes::ShapeRef.new(shape: String, location_name: "BabelfishDatabaseName"))
|
2132
|
+
PostgreSQLSettings.add_member(:disable_unicode_source_filter, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DisableUnicodeSourceFilter"))
|
2117
2133
|
PostgreSQLSettings.struct_class = Types::PostgreSQLSettings
|
2118
2134
|
|
2119
2135
|
PostgreSqlDataProviderSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
|
@@ -2303,7 +2319,7 @@ module Aws::DatabaseMigrationService
|
|
2303
2319
|
ReplicationConfigList.member = Shapes::ShapeRef.new(shape: ReplicationConfig)
|
2304
2320
|
|
2305
2321
|
ReplicationInstance.add_member(:replication_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceIdentifier"))
|
2306
|
-
ReplicationInstance.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape:
|
2322
|
+
ReplicationInstance.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: ReplicationInstanceClass, location_name: "ReplicationInstanceClass"))
|
2307
2323
|
ReplicationInstance.add_member(:replication_instance_status, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceStatus"))
|
2308
2324
|
ReplicationInstance.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: Integer, location_name: "AllocatedStorage"))
|
2309
2325
|
ReplicationInstance.add_member(:instance_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "InstanceCreateTime"))
|
@@ -2327,6 +2343,7 @@ module Aws::DatabaseMigrationService
|
|
2327
2343
|
ReplicationInstance.add_member(:free_until, Shapes::ShapeRef.new(shape: TStamp, location_name: "FreeUntil"))
|
2328
2344
|
ReplicationInstance.add_member(:dns_name_servers, Shapes::ShapeRef.new(shape: String, location_name: "DnsNameServers"))
|
2329
2345
|
ReplicationInstance.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
2346
|
+
ReplicationInstance.add_member(:kerberos_authentication_settings, Shapes::ShapeRef.new(shape: KerberosAuthenticationSettings, location_name: "KerberosAuthenticationSettings"))
|
2330
2347
|
ReplicationInstance.struct_class = Types::ReplicationInstance
|
2331
2348
|
|
2332
2349
|
ReplicationInstanceIpv6AddressList.member = Shapes::ShapeRef.new(shape: String)
|
@@ -2346,7 +2363,7 @@ module Aws::DatabaseMigrationService
|
|
2346
2363
|
|
2347
2364
|
ReplicationList.member = Shapes::ShapeRef.new(shape: Replication)
|
2348
2365
|
|
2349
|
-
ReplicationPendingModifiedValues.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape:
|
2366
|
+
ReplicationPendingModifiedValues.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: ReplicationInstanceClass, location_name: "ReplicationInstanceClass"))
|
2350
2367
|
ReplicationPendingModifiedValues.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
2351
2368
|
ReplicationPendingModifiedValues.add_member(:multi_az, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZ"))
|
2352
2369
|
ReplicationPendingModifiedValues.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
@@ -2408,7 +2425,7 @@ module Aws::DatabaseMigrationService
|
|
2408
2425
|
ReplicationTaskAssessmentResult.add_member(:assessment_status, Shapes::ShapeRef.new(shape: String, location_name: "AssessmentStatus"))
|
2409
2426
|
ReplicationTaskAssessmentResult.add_member(:assessment_results_file, Shapes::ShapeRef.new(shape: String, location_name: "AssessmentResultsFile"))
|
2410
2427
|
ReplicationTaskAssessmentResult.add_member(:assessment_results, Shapes::ShapeRef.new(shape: String, location_name: "AssessmentResults"))
|
2411
|
-
ReplicationTaskAssessmentResult.add_member(:s3_object_url, Shapes::ShapeRef.new(shape:
|
2428
|
+
ReplicationTaskAssessmentResult.add_member(:s3_object_url, Shapes::ShapeRef.new(shape: SecretString, location_name: "S3ObjectUrl"))
|
2412
2429
|
ReplicationTaskAssessmentResult.struct_class = Types::ReplicationTaskAssessmentResult
|
2413
2430
|
|
2414
2431
|
ReplicationTaskAssessmentResultList.member = Shapes::ShapeRef.new(shape: ReplicationTaskAssessmentResult)
|
@@ -3103,6 +3120,7 @@ module Aws::DatabaseMigrationService
|
|
3103
3120
|
o.output = Shapes::ShapeRef.new(shape: DeleteEventSubscriptionResponse)
|
3104
3121
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
|
3105
3122
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateFault)
|
3123
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedFault)
|
3106
3124
|
end)
|
3107
3125
|
|
3108
3126
|
api.add_operation(:delete_fleet_advisor_collector, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3181,6 +3199,7 @@ module Aws::DatabaseMigrationService
|
|
3181
3199
|
o.output = Shapes::ShapeRef.new(shape: DeleteReplicationSubnetGroupResponse)
|
3182
3200
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateFault)
|
3183
3201
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
|
3202
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedFault)
|
3184
3203
|
end)
|
3185
3204
|
|
3186
3205
|
api.add_operation(:delete_replication_task, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3841,6 +3860,7 @@ module Aws::DatabaseMigrationService
|
|
3841
3860
|
o.output = Shapes::ShapeRef.new(shape: DescribeTableStatisticsResponse)
|
3842
3861
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
|
3843
3862
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateFault)
|
3863
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedFault)
|
3844
3864
|
o[:pager] = Aws::Pager.new(
|
3845
3865
|
limit_key: "max_records",
|
3846
3866
|
tokens: {
|
@@ -3940,6 +3960,7 @@ module Aws::DatabaseMigrationService
|
|
3940
3960
|
o.errors << Shapes::ShapeRef.new(shape: KMSInvalidStateFault)
|
3941
3961
|
o.errors << Shapes::ShapeRef.new(shape: KMSNotFoundFault)
|
3942
3962
|
o.errors << Shapes::ShapeRef.new(shape: KMSThrottlingFault)
|
3963
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedFault)
|
3943
3964
|
end)
|
3944
3965
|
|
3945
3966
|
api.add_operation(:modify_instance_profile, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1627,6 +1627,12 @@ module Aws::DatabaseMigrationService
|
|
1627
1627
|
# addressing. IPv6 only is not yet supported.
|
1628
1628
|
# @return [String]
|
1629
1629
|
#
|
1630
|
+
# @!attribute [rw] kerberos_authentication_settings
|
1631
|
+
# Specifies the ID of the secret that stores the key cache file
|
1632
|
+
# required for kerberos authentication, when creating a replication
|
1633
|
+
# instance.
|
1634
|
+
# @return [Types::KerberosAuthenticationSettings]
|
1635
|
+
#
|
1630
1636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstanceMessage AWS API Documentation
|
1631
1637
|
#
|
1632
1638
|
class CreateReplicationInstanceMessage < Struct.new(
|
@@ -1645,7 +1651,8 @@ module Aws::DatabaseMigrationService
|
|
1645
1651
|
:publicly_accessible,
|
1646
1652
|
:dns_name_servers,
|
1647
1653
|
:resource_identifier,
|
1648
|
-
:network_type
|
1654
|
+
:network_type,
|
1655
|
+
:kerberos_authentication_settings)
|
1649
1656
|
SENSITIVE = []
|
1650
1657
|
include Aws::Structure
|
1651
1658
|
end
|
@@ -3024,7 +3031,8 @@ module Aws::DatabaseMigrationService
|
|
3024
3031
|
# Filters applied to the data providers described in the form of
|
3025
3032
|
# key-value pairs.
|
3026
3033
|
#
|
3027
|
-
# Valid filter names: data-provider-identifier
|
3034
|
+
# Valid filter names and values: data-provider-identifier, data
|
3035
|
+
# provider arn or name
|
3028
3036
|
# @return [Array<Types::Filter>]
|
3029
3037
|
#
|
3030
3038
|
# @!attribute [rw] max_records
|
@@ -3796,6 +3804,9 @@ module Aws::DatabaseMigrationService
|
|
3796
3804
|
# @!attribute [rw] filters
|
3797
3805
|
# Filters applied to the instance profiles described in the form of
|
3798
3806
|
# key-value pairs.
|
3807
|
+
#
|
3808
|
+
# Valid filter names and values: instance-profile-identifier, instance
|
3809
|
+
# profile arn or name
|
3799
3810
|
# @return [Array<Types::Filter>]
|
3800
3811
|
#
|
3801
3812
|
# @!attribute [rw] max_records
|
@@ -4173,6 +4184,14 @@ module Aws::DatabaseMigrationService
|
|
4173
4184
|
# @!attribute [rw] filters
|
4174
4185
|
# Filters applied to the migration projects described in the form of
|
4175
4186
|
# key-value pairs.
|
4187
|
+
#
|
4188
|
+
# Valid filter names and values:
|
4189
|
+
#
|
4190
|
+
# * instance-profile-identifier, instance profile arn or name
|
4191
|
+
#
|
4192
|
+
# * data-provider-identifier, data provider arn or name
|
4193
|
+
#
|
4194
|
+
# * migration-project-identifier, migration project arn or name
|
4176
4195
|
# @return [Array<Types::Filter>]
|
4177
4196
|
#
|
4178
4197
|
# @!attribute [rw] max_records
|
@@ -6750,6 +6769,10 @@ module Aws::DatabaseMigrationService
|
|
6750
6769
|
# supported in DMS version 3.5.1 and later.
|
6751
6770
|
# @return [String]
|
6752
6771
|
#
|
6772
|
+
# @!attribute [rw] use_large_integer_value
|
6773
|
+
# Specifies using the large integer value with Kafka.
|
6774
|
+
# @return [Boolean]
|
6775
|
+
#
|
6753
6776
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KafkaSettings AWS API Documentation
|
6754
6777
|
#
|
6755
6778
|
class KafkaSettings < Struct.new(
|
@@ -6772,11 +6795,40 @@ module Aws::DatabaseMigrationService
|
|
6772
6795
|
:sasl_password,
|
6773
6796
|
:no_hex_prefix,
|
6774
6797
|
:sasl_mechanism,
|
6775
|
-
:ssl_endpoint_identification_algorithm
|
6798
|
+
:ssl_endpoint_identification_algorithm,
|
6799
|
+
:use_large_integer_value)
|
6776
6800
|
SENSITIVE = [:ssl_client_key_password, :sasl_password]
|
6777
6801
|
include Aws::Structure
|
6778
6802
|
end
|
6779
6803
|
|
6804
|
+
# Specifies using Kerberos authentication settings for use with DMS.
|
6805
|
+
#
|
6806
|
+
# @!attribute [rw] key_cache_secret_id
|
6807
|
+
# Specifies the secret ID of the key cache for the replication
|
6808
|
+
# instance.
|
6809
|
+
# @return [String]
|
6810
|
+
#
|
6811
|
+
# @!attribute [rw] key_cache_secret_iam_arn
|
6812
|
+
# Specifies the Amazon Resource Name (ARN) of the IAM role that grants
|
6813
|
+
# Amazon Web Services DMS access to the secret containing key cache
|
6814
|
+
# file for the replication instance.
|
6815
|
+
# @return [String]
|
6816
|
+
#
|
6817
|
+
# @!attribute [rw] krb_5_file_contents
|
6818
|
+
# Specifies the ID of the secret that stores the key cache file
|
6819
|
+
# required for kerberos authentication of the replication instance.
|
6820
|
+
# @return [String]
|
6821
|
+
#
|
6822
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KerberosAuthenticationSettings AWS API Documentation
|
6823
|
+
#
|
6824
|
+
class KerberosAuthenticationSettings < Struct.new(
|
6825
|
+
:key_cache_secret_id,
|
6826
|
+
:key_cache_secret_iam_arn,
|
6827
|
+
:krb_5_file_contents)
|
6828
|
+
SENSITIVE = []
|
6829
|
+
include Aws::Structure
|
6830
|
+
end
|
6831
|
+
|
6780
6832
|
# Provides information that describes an Amazon Kinesis Data Stream
|
6781
6833
|
# endpoint. This information includes the output format of records
|
6782
6834
|
# applied to the endpoint and details of transaction and control table
|
@@ -6849,6 +6901,10 @@ module Aws::DatabaseMigrationService
|
|
6849
6901
|
# type columns without adding the '0x' prefix.
|
6850
6902
|
# @return [Boolean]
|
6851
6903
|
#
|
6904
|
+
# @!attribute [rw] use_large_integer_value
|
6905
|
+
# Specifies using the large integer value with Kinesis.
|
6906
|
+
# @return [Boolean]
|
6907
|
+
#
|
6852
6908
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KinesisSettings AWS API Documentation
|
6853
6909
|
#
|
6854
6910
|
class KinesisSettings < Struct.new(
|
@@ -6861,7 +6917,8 @@ module Aws::DatabaseMigrationService
|
|
6861
6917
|
:include_table_alter_operations,
|
6862
6918
|
:include_control_details,
|
6863
6919
|
:include_null_and_empty,
|
6864
|
-
:no_hex_prefix
|
6920
|
+
:no_hex_prefix,
|
6921
|
+
:use_large_integer_value)
|
6865
6922
|
SENSITIVE = []
|
6866
6923
|
include Aws::Structure
|
6867
6924
|
end
|
@@ -7123,6 +7180,10 @@ module Aws::DatabaseMigrationService
|
|
7123
7180
|
# Forces LOB lookup on inline LOB.
|
7124
7181
|
# @return [Boolean]
|
7125
7182
|
#
|
7183
|
+
# @!attribute [rw] authentication_method
|
7184
|
+
# Specifies using Kerberos authentication with Microsoft SQL Server.
|
7185
|
+
# @return [String]
|
7186
|
+
#
|
7126
7187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSQLServerSettings AWS API Documentation
|
7127
7188
|
#
|
7128
7189
|
class MicrosoftSQLServerSettings < Struct.new(
|
@@ -7142,7 +7203,8 @@ module Aws::DatabaseMigrationService
|
|
7142
7203
|
:secrets_manager_secret_id,
|
7143
7204
|
:trim_space_in_char,
|
7144
7205
|
:tlog_access_mode,
|
7145
|
-
:force_lob_lookup
|
7206
|
+
:force_lob_lookup,
|
7207
|
+
:authentication_method)
|
7146
7208
|
SENSITIVE = [:password]
|
7147
7209
|
include Aws::Structure
|
7148
7210
|
end
|
@@ -8130,6 +8192,12 @@ module Aws::DatabaseMigrationService
|
|
8130
8192
|
# addressing. IPv6 only is not yet supported.
|
8131
8193
|
# @return [String]
|
8132
8194
|
#
|
8195
|
+
# @!attribute [rw] kerberos_authentication_settings
|
8196
|
+
# Specifies the ID of the secret that stores the key cache file
|
8197
|
+
# required for kerberos authentication, when modifying a replication
|
8198
|
+
# instance.
|
8199
|
+
# @return [Types::KerberosAuthenticationSettings]
|
8200
|
+
#
|
8133
8201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstanceMessage AWS API Documentation
|
8134
8202
|
#
|
8135
8203
|
class ModifyReplicationInstanceMessage < Struct.new(
|
@@ -8144,7 +8212,8 @@ module Aws::DatabaseMigrationService
|
|
8144
8212
|
:allow_major_version_upgrade,
|
8145
8213
|
:auto_minor_version_upgrade,
|
8146
8214
|
:replication_instance_identifier,
|
8147
|
-
:network_type
|
8215
|
+
:network_type,
|
8216
|
+
:kerberos_authentication_settings)
|
8148
8217
|
SENSITIVE = []
|
8149
8218
|
include Aws::Structure
|
8150
8219
|
end
|
@@ -9028,8 +9097,8 @@ module Aws::DatabaseMigrationService
|
|
9028
9097
|
# @return [Boolean]
|
9029
9098
|
#
|
9030
9099
|
# @!attribute [rw] archived_logs_only
|
9031
|
-
# When this field is set to `
|
9032
|
-
# logs. If the archived redo logs are stored on Automatic Storage
|
9100
|
+
# When this field is set to `True`, DMS only accesses the archived
|
9101
|
+
# redo logs. If the archived redo logs are stored on Automatic Storage
|
9033
9102
|
# Management (ASM) only, the DMS user account needs to be granted ASM
|
9034
9103
|
# privileges.
|
9035
9104
|
# @return [Boolean]
|
@@ -9198,12 +9267,12 @@ module Aws::DatabaseMigrationService
|
|
9198
9267
|
# @return [String]
|
9199
9268
|
#
|
9200
9269
|
# @!attribute [rw] use_b_file
|
9201
|
-
# Set this attribute to
|
9202
|
-
# Reader utility. Set `UseLogminerReader` to
|
9203
|
-
# to
|
9204
|
-
# you set additional attributes. For more information
|
9205
|
-
# setting with Oracle Automatic Storage Management
|
9206
|
-
# Oracle LogMiner or DMS Binary Reader for CDC][1].
|
9270
|
+
# Set this attribute to True to capture change data using the Binary
|
9271
|
+
# Reader utility. Set `UseLogminerReader` to False to set this
|
9272
|
+
# attribute to True. To use Binary Reader with Amazon RDS for Oracle
|
9273
|
+
# as the source, you set additional attributes. For more information
|
9274
|
+
# about using this setting with Oracle Automatic Storage Management
|
9275
|
+
# (ASM), see [ Using Oracle LogMiner or DMS Binary Reader for CDC][1].
|
9207
9276
|
#
|
9208
9277
|
#
|
9209
9278
|
#
|
@@ -9211,17 +9280,17 @@ module Aws::DatabaseMigrationService
|
|
9211
9280
|
# @return [Boolean]
|
9212
9281
|
#
|
9213
9282
|
# @!attribute [rw] use_direct_path_full_load
|
9214
|
-
# Set this attribute to
|
9283
|
+
# Set this attribute to True to have DMS use a direct path full load.
|
9215
9284
|
# Specify this value to use the direct path protocol in the Oracle
|
9216
9285
|
# Call Interface (OCI). By using this OCI protocol, you can bulk-load
|
9217
9286
|
# Oracle target tables during a full load.
|
9218
9287
|
# @return [Boolean]
|
9219
9288
|
#
|
9220
9289
|
# @!attribute [rw] use_logminer_reader
|
9221
|
-
# Set this attribute to
|
9222
|
-
# LogMiner utility (the default). Set this attribute to
|
9223
|
-
# to access the redo logs as a binary file. When you set
|
9224
|
-
# `UseLogminerReader` to
|
9290
|
+
# Set this attribute to True to capture change data using the Oracle
|
9291
|
+
# LogMiner utility (the default). Set this attribute to False if you
|
9292
|
+
# want to access the redo logs as a binary file. When you set
|
9293
|
+
# `UseLogminerReader` to False, also set `UseBfile` to True. For more
|
9225
9294
|
# information on this setting and using Oracle ASM, see [ Using Oracle
|
9226
9295
|
# LogMiner or DMS Binary Reader for CDC][1] in the *DMS User Guide*.
|
9227
9296
|
#
|
@@ -9312,13 +9381,15 @@ module Aws::DatabaseMigrationService
|
|
9312
9381
|
# You can specify an integer value between 0 (the default) and 240
|
9313
9382
|
# (the maximum).
|
9314
9383
|
#
|
9315
|
-
# <note markdown="1"> This parameter is only valid in DMS version 3.5.0 and later.
|
9316
|
-
# supports a window of up to 9.5 hours including the value for
|
9317
|
-
# `OpenTransactionWindow`.
|
9384
|
+
# <note markdown="1"> This parameter is only valid in DMS version 3.5.0 and later.
|
9318
9385
|
#
|
9319
9386
|
# </note>
|
9320
9387
|
# @return [Integer]
|
9321
9388
|
#
|
9389
|
+
# @!attribute [rw] authentication_method
|
9390
|
+
# Specifies using Kerberos authentication with Oracle.
|
9391
|
+
# @return [String]
|
9392
|
+
#
|
9322
9393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleSettings AWS API Documentation
|
9323
9394
|
#
|
9324
9395
|
class OracleSettings < Struct.new(
|
@@ -9364,7 +9435,8 @@ module Aws::DatabaseMigrationService
|
|
9364
9435
|
:secrets_manager_oracle_asm_secret_id,
|
9365
9436
|
:trim_space_in_char,
|
9366
9437
|
:convert_timestamp_with_zone_to_utc,
|
9367
|
-
:open_transaction_window
|
9438
|
+
:open_transaction_window,
|
9439
|
+
:authentication_method)
|
9368
9440
|
SENSITIVE = [:asm_password, :password, :security_db_encryption]
|
9369
9441
|
include Aws::Structure
|
9370
9442
|
end
|
@@ -9517,6 +9589,8 @@ module Aws::DatabaseMigrationService
|
|
9517
9589
|
# PostgreSQL database when the task starts. You can later remove these
|
9518
9590
|
# artifacts.
|
9519
9591
|
#
|
9592
|
+
# The default value is `true`.
|
9593
|
+
#
|
9520
9594
|
# If this value is set to `N`, you don't have to create tables or
|
9521
9595
|
# triggers on the source database.
|
9522
9596
|
# @return [Boolean]
|
@@ -9525,6 +9599,8 @@ module Aws::DatabaseMigrationService
|
|
9525
9599
|
# Specifies the maximum size (in KB) of any .csv file used to transfer
|
9526
9600
|
# data to PostgreSQL.
|
9527
9601
|
#
|
9602
|
+
# The default value is 32,768 KB (32 MB).
|
9603
|
+
#
|
9528
9604
|
# Example: `maxFileSize=512`
|
9529
9605
|
# @return [Integer]
|
9530
9606
|
#
|
@@ -9536,6 +9612,8 @@ module Aws::DatabaseMigrationService
|
|
9536
9612
|
# The schema in which the operational DDL database artifacts are
|
9537
9613
|
# created.
|
9538
9614
|
#
|
9615
|
+
# The default value is `public`.
|
9616
|
+
#
|
9539
9617
|
# Example: `ddlArtifactsSchema=xyzddlschema;`
|
9540
9618
|
# @return [String]
|
9541
9619
|
#
|
@@ -9550,6 +9628,8 @@ module Aws::DatabaseMigrationService
|
|
9550
9628
|
# When set to `true`, this value causes a task to fail if the actual
|
9551
9629
|
# size of a LOB column is greater than the specified `LobMaxSize`.
|
9552
9630
|
#
|
9631
|
+
# The default value is `false`.
|
9632
|
+
#
|
9553
9633
|
# If task is set to Limited LOB mode and this option is set to true,
|
9554
9634
|
# the task fails instead of truncating the LOB data.
|
9555
9635
|
# @return [Boolean]
|
@@ -9560,14 +9640,20 @@ module Aws::DatabaseMigrationService
|
|
9560
9640
|
# slots from holding onto old WAL logs, which can result in storage
|
9561
9641
|
# full situations on the source. This heartbeat keeps `restart_lsn`
|
9562
9642
|
# moving and prevents storage full scenarios.
|
9643
|
+
#
|
9644
|
+
# The default value is `false`.
|
9563
9645
|
# @return [Boolean]
|
9564
9646
|
#
|
9565
9647
|
# @!attribute [rw] heartbeat_schema
|
9566
9648
|
# Sets the schema in which the heartbeat artifacts are created.
|
9649
|
+
#
|
9650
|
+
# The default value is `public`.
|
9567
9651
|
# @return [String]
|
9568
9652
|
#
|
9569
9653
|
# @!attribute [rw] heartbeat_frequency
|
9570
9654
|
# Sets the WAL heartbeat frequency (in minutes).
|
9655
|
+
#
|
9656
|
+
# The default value is 5 minutes.
|
9571
9657
|
# @return [Integer]
|
9572
9658
|
#
|
9573
9659
|
# @!attribute [rw] password
|
@@ -9625,6 +9711,8 @@ module Aws::DatabaseMigrationService
|
|
9625
9711
|
#
|
9626
9712
|
# @!attribute [rw] plugin_name
|
9627
9713
|
# Specifies the plugin to use to create a replication slot.
|
9714
|
+
#
|
9715
|
+
# The default value is `pglogical`.
|
9628
9716
|
# @return [String]
|
9629
9717
|
#
|
9630
9718
|
# @!attribute [rw] secrets_manager_access_role_arn
|
@@ -9669,14 +9757,20 @@ module Aws::DatabaseMigrationService
|
|
9669
9757
|
# default, PostgreSQL migrates booleans as `varchar(5)`. You must set
|
9670
9758
|
# this setting on both the source and target endpoints for it to take
|
9671
9759
|
# effect.
|
9760
|
+
#
|
9761
|
+
# The default value is `false`.
|
9672
9762
|
# @return [Boolean]
|
9673
9763
|
#
|
9674
9764
|
# @!attribute [rw] map_jsonb_as_clob
|
9675
9765
|
# When true, DMS migrates JSONB values as CLOB.
|
9766
|
+
#
|
9767
|
+
# The default value is `false`.
|
9676
9768
|
# @return [Boolean]
|
9677
9769
|
#
|
9678
9770
|
# @!attribute [rw] map_long_varchar_as
|
9679
|
-
#
|
9771
|
+
# Sets what datatype to map LONG values as.
|
9772
|
+
#
|
9773
|
+
# The default value is `wstring`.
|
9680
9774
|
# @return [String]
|
9681
9775
|
#
|
9682
9776
|
# @!attribute [rw] database_mode
|
@@ -9689,6 +9783,17 @@ module Aws::DatabaseMigrationService
|
|
9689
9783
|
# The Babelfish for Aurora PostgreSQL database name for the endpoint.
|
9690
9784
|
# @return [String]
|
9691
9785
|
#
|
9786
|
+
# @!attribute [rw] disable_unicode_source_filter
|
9787
|
+
# Disables the Unicode source filter with PostgreSQL, for values
|
9788
|
+
# passed into the Selection rule filter on Source Endpoint column
|
9789
|
+
# values. By default DMS performs source filter comparisons using a
|
9790
|
+
# Unicode string which can cause look ups to ignore the indexes in the
|
9791
|
+
# text columns and slow down migrations.
|
9792
|
+
#
|
9793
|
+
# Unicode support should only be disabled when using a selection rule
|
9794
|
+
# filter is on a text column in the Source database that is indexed.
|
9795
|
+
# @return [Boolean]
|
9796
|
+
#
|
9692
9797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/PostgreSQLSettings AWS API Documentation
|
9693
9798
|
#
|
9694
9799
|
class PostgreSQLSettings < Struct.new(
|
@@ -9715,7 +9820,8 @@ module Aws::DatabaseMigrationService
|
|
9715
9820
|
:map_jsonb_as_clob,
|
9716
9821
|
:map_long_varchar_as,
|
9717
9822
|
:database_mode,
|
9718
|
-
:babelfish_database_name
|
9823
|
+
:babelfish_database_name,
|
9824
|
+
:disable_unicode_source_filter)
|
9719
9825
|
SENSITIVE = [:password]
|
9720
9826
|
include Aws::Structure
|
9721
9827
|
end
|
@@ -10712,7 +10818,7 @@ module Aws::DatabaseMigrationService
|
|
10712
10818
|
# @return [Types::ReplicationStats]
|
10713
10819
|
#
|
10714
10820
|
# @!attribute [rw] start_replication_type
|
10715
|
-
# The replication
|
10821
|
+
# The type of replication to start.
|
10716
10822
|
# @return [String]
|
10717
10823
|
#
|
10718
10824
|
# @!attribute [rw] cdc_start_time
|
@@ -11033,6 +11139,11 @@ module Aws::DatabaseMigrationService
|
|
11033
11139
|
# addressing. IPv6 only is not yet supported.
|
11034
11140
|
# @return [String]
|
11035
11141
|
#
|
11142
|
+
# @!attribute [rw] kerberos_authentication_settings
|
11143
|
+
# Specifies the ID of the secret that stores the key cache file
|
11144
|
+
# required for kerberos authentication, when replicating an instance.
|
11145
|
+
# @return [Types::KerberosAuthenticationSettings]
|
11146
|
+
#
|
11036
11147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationInstance AWS API Documentation
|
11037
11148
|
#
|
11038
11149
|
class ReplicationInstance < Struct.new(
|
@@ -11060,7 +11171,8 @@ module Aws::DatabaseMigrationService
|
|
11060
11171
|
:secondary_availability_zone,
|
11061
11172
|
:free_until,
|
11062
11173
|
:dns_name_servers,
|
11063
|
-
:network_type
|
11174
|
+
:network_type,
|
11175
|
+
:kerberos_authentication_settings)
|
11064
11176
|
SENSITIVE = []
|
11065
11177
|
include Aws::Structure
|
11066
11178
|
end
|
@@ -11384,13 +11496,16 @@ module Aws::DatabaseMigrationService
|
|
11384
11496
|
# The reason the replication task was stopped. This response parameter
|
11385
11497
|
# can return one of the following values:
|
11386
11498
|
#
|
11387
|
-
# * `"Stop Reason NORMAL"`
|
11499
|
+
# * `"Stop Reason NORMAL"` – The task completed successfully with no
|
11500
|
+
# additional information returned.
|
11388
11501
|
#
|
11389
11502
|
# * `"Stop Reason RECOVERABLE_ERROR"`
|
11390
11503
|
#
|
11391
11504
|
# * `"Stop Reason FATAL_ERROR"`
|
11392
11505
|
#
|
11393
|
-
# * `"Stop Reason FULL_LOAD_ONLY_FINISHED"`
|
11506
|
+
# * `"Stop Reason FULL_LOAD_ONLY_FINISHED"` – The task completed the
|
11507
|
+
# full load phase. DMS applied cached changes if you set
|
11508
|
+
# `StopTaskCachedChangesApplied` to `true`.
|
11394
11509
|
#
|
11395
11510
|
# * `"Stop Reason STOPPED_AFTER_FULL_LOAD"` – Full load completed,
|
11396
11511
|
# with cached changes not applied
|
@@ -11566,7 +11681,7 @@ module Aws::DatabaseMigrationService
|
|
11566
11681
|
:assessment_results_file,
|
11567
11682
|
:assessment_results,
|
11568
11683
|
:s3_object_url)
|
11569
|
-
SENSITIVE = []
|
11684
|
+
SENSITIVE = [:s3_object_url]
|
11570
11685
|
include Aws::Structure
|
11571
11686
|
end
|
11572
11687
|
|
@@ -11618,6 +11733,9 @@ module Aws::DatabaseMigrationService
|
|
11618
11733
|
#
|
11619
11734
|
# * `"starting"` – The assessment run is starting, but resources are
|
11620
11735
|
# not yet being provisioned for individual assessments.
|
11736
|
+
#
|
11737
|
+
# * `"warning"` – At least one individual assessment completed with a
|
11738
|
+
# `warning` status.
|
11621
11739
|
# @return [String]
|
11622
11740
|
#
|
11623
11741
|
# @!attribute [rw] replication_task_assessment_run_creation_date
|
@@ -13135,6 +13253,23 @@ module Aws::DatabaseMigrationService
|
|
13135
13253
|
#
|
13136
13254
|
# @!attribute [rw] start_replication_type
|
13137
13255
|
# The replication type.
|
13256
|
+
#
|
13257
|
+
# When the replication type is `full-load` or `full-load-and-cdc`, the
|
13258
|
+
# only valid value for the first run of the replication is
|
13259
|
+
# `start-replication`. This option will start the replication.
|
13260
|
+
#
|
13261
|
+
# You can also use ReloadTables to reload specific tables that failed
|
13262
|
+
# during replication instead of restarting the replication.
|
13263
|
+
#
|
13264
|
+
# The `resume-processing` option isn't applicable for a full-load
|
13265
|
+
# replication, because you can't resume partially loaded tables
|
13266
|
+
# during the full load phase.
|
13267
|
+
#
|
13268
|
+
# For a `full-load-and-cdc` replication, DMS migrates table data, and
|
13269
|
+
# then applies data changes that occur on the source. To load all the
|
13270
|
+
# tables again, and start capturing source changes, use
|
13271
|
+
# `reload-target`. Otherwise use `resume-processing`, to replicate the
|
13272
|
+
# changes from the last stop position.
|
13138
13273
|
# @return [String]
|
13139
13274
|
#
|
13140
13275
|
# @!attribute [rw] cdc_start_time
|