aws-sdk-databasemigrationservice 1.46.0 → 1.47.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a649d091dae322d51ec48fe5bd15df29d96336a0d6bd36b36e2774ac12eb9987
|
4
|
+
data.tar.gz: 9777f841ae19c345b425204e2e3e1c1b8ef4326ca1be554fb011b2897ec4a39e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c621af823302ae915086d30e5c2da902adaa02f8f281c335e0b4c56ed1e37683459b0b7aaaaf1f2762cc816c7e1223d5d7162e52c60d03934affa7b22f17b9e2
|
7
|
+
data.tar.gz: d15cded33ddbb4b15083acbce32e9ff07a7dd38f177b837f021e17348ac292114b165b751edf4e9cc880496671930caed543e8f3c9e7598e3da616f3b9d69667
|
@@ -1949,6 +1949,7 @@ module Aws::DatabaseMigrationService
|
|
1949
1949
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
1950
1950
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
1951
1951
|
# resp.replication_task.task_data #=> String
|
1952
|
+
# resp.replication_task.target_replication_instance_arn #=> String
|
1952
1953
|
#
|
1953
1954
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationTask AWS API Documentation
|
1954
1955
|
#
|
@@ -2599,6 +2600,7 @@ module Aws::DatabaseMigrationService
|
|
2599
2600
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
2600
2601
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
2601
2602
|
# resp.replication_task.task_data #=> String
|
2603
|
+
# resp.replication_task.target_replication_instance_arn #=> String
|
2602
2604
|
#
|
2603
2605
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTask AWS API Documentation
|
2604
2606
|
#
|
@@ -4360,6 +4362,7 @@ module Aws::DatabaseMigrationService
|
|
4360
4362
|
# resp.replication_tasks[0].replication_task_stats.full_load_start_date #=> Time
|
4361
4363
|
# resp.replication_tasks[0].replication_task_stats.full_load_finish_date #=> Time
|
4362
4364
|
# resp.replication_tasks[0].task_data #=> String
|
4365
|
+
# resp.replication_tasks[0].target_replication_instance_arn #=> String
|
4363
4366
|
#
|
4364
4367
|
#
|
4365
4368
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -5895,6 +5898,7 @@ module Aws::DatabaseMigrationService
|
|
5895
5898
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
5896
5899
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
5897
5900
|
# resp.replication_task.task_data #=> String
|
5901
|
+
# resp.replication_task.target_replication_instance_arn #=> String
|
5898
5902
|
#
|
5899
5903
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationTask AWS API Documentation
|
5900
5904
|
#
|
@@ -5905,6 +5909,70 @@ module Aws::DatabaseMigrationService
|
|
5905
5909
|
req.send_request(options)
|
5906
5910
|
end
|
5907
5911
|
|
5912
|
+
# Moves a replication task from its current replication instance to a
|
5913
|
+
# different target replication instance using the specified parameters.
|
5914
|
+
# The target replication instance must be created with the same or later
|
5915
|
+
# AWS DMS version as the current replication instance.
|
5916
|
+
#
|
5917
|
+
# @option params [required, String] :replication_task_arn
|
5918
|
+
# The Amazon Resource Name (ARN) of the task that you want to move.
|
5919
|
+
#
|
5920
|
+
# @option params [required, String] :target_replication_instance_arn
|
5921
|
+
# The ARN of the replication instance where you want to move the task
|
5922
|
+
# to.
|
5923
|
+
#
|
5924
|
+
# @return [Types::MoveReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5925
|
+
#
|
5926
|
+
# * {Types::MoveReplicationTaskResponse#replication_task #replication_task} => Types::ReplicationTask
|
5927
|
+
#
|
5928
|
+
# @example Request syntax with placeholder values
|
5929
|
+
#
|
5930
|
+
# resp = client.move_replication_task({
|
5931
|
+
# replication_task_arn: "String", # required
|
5932
|
+
# target_replication_instance_arn: "String", # required
|
5933
|
+
# })
|
5934
|
+
#
|
5935
|
+
# @example Response structure
|
5936
|
+
#
|
5937
|
+
# resp.replication_task.replication_task_identifier #=> String
|
5938
|
+
# resp.replication_task.source_endpoint_arn #=> String
|
5939
|
+
# resp.replication_task.target_endpoint_arn #=> String
|
5940
|
+
# resp.replication_task.replication_instance_arn #=> String
|
5941
|
+
# resp.replication_task.migration_type #=> String, one of "full-load", "cdc", "full-load-and-cdc"
|
5942
|
+
# resp.replication_task.table_mappings #=> String
|
5943
|
+
# resp.replication_task.replication_task_settings #=> String
|
5944
|
+
# resp.replication_task.status #=> String
|
5945
|
+
# resp.replication_task.last_failure_message #=> String
|
5946
|
+
# resp.replication_task.stop_reason #=> String
|
5947
|
+
# resp.replication_task.replication_task_creation_date #=> Time
|
5948
|
+
# resp.replication_task.replication_task_start_date #=> Time
|
5949
|
+
# resp.replication_task.cdc_start_position #=> String
|
5950
|
+
# resp.replication_task.cdc_stop_position #=> String
|
5951
|
+
# resp.replication_task.recovery_checkpoint #=> String
|
5952
|
+
# resp.replication_task.replication_task_arn #=> String
|
5953
|
+
# resp.replication_task.replication_task_stats.full_load_progress_percent #=> Integer
|
5954
|
+
# resp.replication_task.replication_task_stats.elapsed_time_millis #=> Integer
|
5955
|
+
# resp.replication_task.replication_task_stats.tables_loaded #=> Integer
|
5956
|
+
# resp.replication_task.replication_task_stats.tables_loading #=> Integer
|
5957
|
+
# resp.replication_task.replication_task_stats.tables_queued #=> Integer
|
5958
|
+
# resp.replication_task.replication_task_stats.tables_errored #=> Integer
|
5959
|
+
# resp.replication_task.replication_task_stats.fresh_start_date #=> Time
|
5960
|
+
# resp.replication_task.replication_task_stats.start_date #=> Time
|
5961
|
+
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
5962
|
+
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
5963
|
+
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
5964
|
+
# resp.replication_task.task_data #=> String
|
5965
|
+
# resp.replication_task.target_replication_instance_arn #=> String
|
5966
|
+
#
|
5967
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MoveReplicationTask AWS API Documentation
|
5968
|
+
#
|
5969
|
+
# @overload move_replication_task(params = {})
|
5970
|
+
# @param [Hash] params ({})
|
5971
|
+
def move_replication_task(params = {}, options = {})
|
5972
|
+
req = build_request(:move_replication_task, params)
|
5973
|
+
req.send_request(options)
|
5974
|
+
end
|
5975
|
+
|
5908
5976
|
# Reboots a replication instance. Rebooting results in a momentary
|
5909
5977
|
# outage, until the replication instance becomes available again.
|
5910
5978
|
#
|
@@ -6260,6 +6328,7 @@ module Aws::DatabaseMigrationService
|
|
6260
6328
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
6261
6329
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
6262
6330
|
# resp.replication_task.task_data #=> String
|
6331
|
+
# resp.replication_task.target_replication_instance_arn #=> String
|
6263
6332
|
#
|
6264
6333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTask AWS API Documentation
|
6265
6334
|
#
|
@@ -6316,6 +6385,7 @@ module Aws::DatabaseMigrationService
|
|
6316
6385
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
6317
6386
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
6318
6387
|
# resp.replication_task.task_data #=> String
|
6388
|
+
# resp.replication_task.target_replication_instance_arn #=> String
|
6319
6389
|
#
|
6320
6390
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessment AWS API Documentation
|
6321
6391
|
#
|
@@ -6516,6 +6586,7 @@ module Aws::DatabaseMigrationService
|
|
6516
6586
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
6517
6587
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
6518
6588
|
# resp.replication_task.task_data #=> String
|
6589
|
+
# resp.replication_task.target_replication_instance_arn #=> String
|
6519
6590
|
#
|
6520
6591
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopReplicationTask AWS API Documentation
|
6521
6592
|
#
|
@@ -6594,7 +6665,7 @@ module Aws::DatabaseMigrationService
|
|
6594
6665
|
params: params,
|
6595
6666
|
config: config)
|
6596
6667
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
6597
|
-
context[:gem_version] = '1.
|
6668
|
+
context[:gem_version] = '1.47.0'
|
6598
6669
|
Seahorse::Client::Request.new(handlers, context)
|
6599
6670
|
end
|
6600
6671
|
|
@@ -165,6 +165,8 @@ module Aws::DatabaseMigrationService
|
|
165
165
|
ModifyReplicationTaskMessage = Shapes::StructureShape.new(name: 'ModifyReplicationTaskMessage')
|
166
166
|
ModifyReplicationTaskResponse = Shapes::StructureShape.new(name: 'ModifyReplicationTaskResponse')
|
167
167
|
MongoDbSettings = Shapes::StructureShape.new(name: 'MongoDbSettings')
|
168
|
+
MoveReplicationTaskMessage = Shapes::StructureShape.new(name: 'MoveReplicationTaskMessage')
|
169
|
+
MoveReplicationTaskResponse = Shapes::StructureShape.new(name: 'MoveReplicationTaskResponse')
|
168
170
|
MySQLSettings = Shapes::StructureShape.new(name: 'MySQLSettings')
|
169
171
|
NeptuneSettings = Shapes::StructureShape.new(name: 'NeptuneSettings')
|
170
172
|
NestingLevelValue = Shapes::StringShape.new(name: 'NestingLevelValue')
|
@@ -955,6 +957,13 @@ module Aws::DatabaseMigrationService
|
|
955
957
|
MongoDbSettings.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
956
958
|
MongoDbSettings.struct_class = Types::MongoDbSettings
|
957
959
|
|
960
|
+
MoveReplicationTaskMessage.add_member(:replication_task_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationTaskArn"))
|
961
|
+
MoveReplicationTaskMessage.add_member(:target_replication_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "TargetReplicationInstanceArn"))
|
962
|
+
MoveReplicationTaskMessage.struct_class = Types::MoveReplicationTaskMessage
|
963
|
+
|
964
|
+
MoveReplicationTaskResponse.add_member(:replication_task, Shapes::ShapeRef.new(shape: ReplicationTask, location_name: "ReplicationTask"))
|
965
|
+
MoveReplicationTaskResponse.struct_class = Types::MoveReplicationTaskResponse
|
966
|
+
|
958
967
|
MySQLSettings.add_member(:after_connect_script, Shapes::ShapeRef.new(shape: String, location_name: "AfterConnectScript"))
|
959
968
|
MySQLSettings.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
|
960
969
|
MySQLSettings.add_member(:events_poll_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "EventsPollInterval"))
|
@@ -1187,6 +1196,7 @@ module Aws::DatabaseMigrationService
|
|
1187
1196
|
ReplicationTask.add_member(:replication_task_arn, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskArn"))
|
1188
1197
|
ReplicationTask.add_member(:replication_task_stats, Shapes::ShapeRef.new(shape: ReplicationTaskStats, location_name: "ReplicationTaskStats"))
|
1189
1198
|
ReplicationTask.add_member(:task_data, Shapes::ShapeRef.new(shape: String, location_name: "TaskData"))
|
1199
|
+
ReplicationTask.add_member(:target_replication_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "TargetReplicationInstanceArn"))
|
1190
1200
|
ReplicationTask.struct_class = Types::ReplicationTask
|
1191
1201
|
|
1192
1202
|
ReplicationTaskAssessmentResult.add_member(:replication_task_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskIdentifier"))
|
@@ -1479,6 +1489,7 @@ module Aws::DatabaseMigrationService
|
|
1479
1489
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateFault)
|
1480
1490
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
|
1481
1491
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedFault)
|
1492
|
+
o.errors << Shapes::ShapeRef.new(shape: S3AccessDeniedFault)
|
1482
1493
|
end)
|
1483
1494
|
|
1484
1495
|
api.add_operation(:create_event_subscription, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2016,6 +2027,17 @@ module Aws::DatabaseMigrationService
|
|
2016
2027
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
2017
2028
|
end)
|
2018
2029
|
|
2030
|
+
api.add_operation(:move_replication_task, Seahorse::Model::Operation.new.tap do |o|
|
2031
|
+
o.name = "MoveReplicationTask"
|
2032
|
+
o.http_method = "POST"
|
2033
|
+
o.http_request_uri = "/"
|
2034
|
+
o.input = Shapes::ShapeRef.new(shape: MoveReplicationTaskMessage)
|
2035
|
+
o.output = Shapes::ShapeRef.new(shape: MoveReplicationTaskResponse)
|
2036
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedFault)
|
2037
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateFault)
|
2038
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
|
2039
|
+
end)
|
2040
|
+
|
2019
2041
|
api.add_operation(:reboot_replication_instance, Seahorse::Model::Operation.new.tap do |o|
|
2020
2042
|
o.name = "RebootReplicationInstance"
|
2021
2043
|
o.http_method = "POST"
|
@@ -5306,6 +5306,44 @@ module Aws::DatabaseMigrationService
|
|
5306
5306
|
include Aws::Structure
|
5307
5307
|
end
|
5308
5308
|
|
5309
|
+
# @note When making an API call, you may pass MoveReplicationTaskMessage
|
5310
|
+
# data as a hash:
|
5311
|
+
#
|
5312
|
+
# {
|
5313
|
+
# replication_task_arn: "String", # required
|
5314
|
+
# target_replication_instance_arn: "String", # required
|
5315
|
+
# }
|
5316
|
+
#
|
5317
|
+
# @!attribute [rw] replication_task_arn
|
5318
|
+
# The Amazon Resource Name (ARN) of the task that you want to move.
|
5319
|
+
# @return [String]
|
5320
|
+
#
|
5321
|
+
# @!attribute [rw] target_replication_instance_arn
|
5322
|
+
# The ARN of the replication instance where you want to move the task
|
5323
|
+
# to.
|
5324
|
+
# @return [String]
|
5325
|
+
#
|
5326
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MoveReplicationTaskMessage AWS API Documentation
|
5327
|
+
#
|
5328
|
+
class MoveReplicationTaskMessage < Struct.new(
|
5329
|
+
:replication_task_arn,
|
5330
|
+
:target_replication_instance_arn)
|
5331
|
+
SENSITIVE = []
|
5332
|
+
include Aws::Structure
|
5333
|
+
end
|
5334
|
+
|
5335
|
+
# @!attribute [rw] replication_task
|
5336
|
+
# The replication task that was moved.
|
5337
|
+
# @return [Types::ReplicationTask]
|
5338
|
+
#
|
5339
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MoveReplicationTaskResponse AWS API Documentation
|
5340
|
+
#
|
5341
|
+
class MoveReplicationTaskResponse < Struct.new(
|
5342
|
+
:replication_task)
|
5343
|
+
SENSITIVE = []
|
5344
|
+
include Aws::Structure
|
5345
|
+
end
|
5346
|
+
|
5309
5347
|
# Provides information that defines a MySQL endpoint.
|
5310
5348
|
#
|
5311
5349
|
# @note When making an API call, you may pass MySQLSettings
|
@@ -6866,17 +6904,16 @@ module Aws::DatabaseMigrationService
|
|
6866
6904
|
# @return [String]
|
6867
6905
|
#
|
6868
6906
|
# @!attribute [rw] source_endpoint_arn
|
6869
|
-
# The Amazon Resource Name (ARN)
|
6907
|
+
# The Amazon Resource Name (ARN) that uniquely identifies the
|
6870
6908
|
# endpoint.
|
6871
6909
|
# @return [String]
|
6872
6910
|
#
|
6873
6911
|
# @!attribute [rw] target_endpoint_arn
|
6874
|
-
# The
|
6875
|
-
# endpoint.
|
6912
|
+
# The ARN that uniquely identifies the endpoint.
|
6876
6913
|
# @return [String]
|
6877
6914
|
#
|
6878
6915
|
# @!attribute [rw] replication_instance_arn
|
6879
|
-
# The
|
6916
|
+
# The ARN of the replication instance.
|
6880
6917
|
# @return [String]
|
6881
6918
|
#
|
6882
6919
|
# @!attribute [rw] migration_type
|
@@ -6892,7 +6929,73 @@ module Aws::DatabaseMigrationService
|
|
6892
6929
|
# @return [String]
|
6893
6930
|
#
|
6894
6931
|
# @!attribute [rw] status
|
6895
|
-
# The status of the replication task.
|
6932
|
+
# The status of the replication task. This response parameter can
|
6933
|
+
# return one of the following values:
|
6934
|
+
#
|
6935
|
+
# * `"moving"` – The task is being moved in response to running the [
|
6936
|
+
# `MoveReplicationTask` ][1] operation.
|
6937
|
+
#
|
6938
|
+
# * `"creating"` – The task is being created in response to running
|
6939
|
+
# the [ `CreateReplicationTask` ][2] operation.
|
6940
|
+
#
|
6941
|
+
# * `"deleting"` – The task is being deleted in response to running
|
6942
|
+
# the [ `DeleteReplicationTask` ][3] operation.
|
6943
|
+
#
|
6944
|
+
# * `"failed"` – The task failed to successfully complete the database
|
6945
|
+
# migration in response to running the [ `StartReplicationTask` ][4]
|
6946
|
+
# operation.
|
6947
|
+
#
|
6948
|
+
# * `"failed-move"` – The task failed to move in response to running
|
6949
|
+
# the [ `MoveReplicationTask` ][1] operation.
|
6950
|
+
#
|
6951
|
+
# * `"modifying"` – The task definition is being modified in response
|
6952
|
+
# to running the [ `ModifyReplicationTask` ][5] operation.
|
6953
|
+
#
|
6954
|
+
# * `"ready"` – The task is in a `ready` state where it can respond to
|
6955
|
+
# other task operations, such as [ `StartReplicationTask` ][4] or [
|
6956
|
+
# `DeleteReplicationTask` ][3].
|
6957
|
+
#
|
6958
|
+
# * `"running"` – The task is performing a database migration in
|
6959
|
+
# response to running the [ `StartReplicationTask` ][4] operation.
|
6960
|
+
#
|
6961
|
+
# * `"starting"` – The task is preparing to perform a database
|
6962
|
+
# migration in response to running the [ `StartReplicationTask` ][4]
|
6963
|
+
# operation.
|
6964
|
+
#
|
6965
|
+
# * `"stopped"` – The task has stopped in response to running the [
|
6966
|
+
# `StopReplicationTask` ][6] operation.
|
6967
|
+
#
|
6968
|
+
# * `"stopping"` – The task is preparing to stop in response to
|
6969
|
+
# running the [ `StopReplicationTask` ][6] operation.
|
6970
|
+
#
|
6971
|
+
# * `"testing"` – The database migration specified for this task is
|
6972
|
+
# being tested in response to running either the [
|
6973
|
+
# `StartReplicationTaskAssessmentRun` ][7] or the [
|
6974
|
+
# `StartReplicationTaskAssessment` ][8] operation.
|
6975
|
+
#
|
6976
|
+
# <note markdown="1"> [ `StartReplicationTaskAssessmentRun` ][7] is an improved
|
6977
|
+
# premigration task assessment operation. The [
|
6978
|
+
# `StartReplicationTaskAssessment` ][8] operation assesses data type
|
6979
|
+
# compatibility only between the source and target database of a
|
6980
|
+
# given migration task. In contrast, [
|
6981
|
+
# `StartReplicationTaskAssessmentRun` ][7] enables you to specify a
|
6982
|
+
# variety of premigration task assessments in addition to data type
|
6983
|
+
# compatibility. These assessments include ones for the validity of
|
6984
|
+
# primary key definitions and likely issues with database migration
|
6985
|
+
# performance, among others.
|
6986
|
+
#
|
6987
|
+
# </note>
|
6988
|
+
#
|
6989
|
+
#
|
6990
|
+
#
|
6991
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_MoveReplicationTask.html
|
6992
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/APIReference/API_CreateReplicationTask.html
|
6993
|
+
# [3]: https://docs.aws.amazon.com/dms/latest/APIReference/API_DeleteReplicationTask.html
|
6994
|
+
# [4]: https://docs.aws.amazon.com/dms/latest/APIReference/API_StartReplicationTask.html
|
6995
|
+
# [5]: https://docs.aws.amazon.com/dms/latest/APIReference/API_ModifyReplicationTask.html
|
6996
|
+
# [6]: https://docs.aws.amazon.com/dms/latest/APIReference/API_StopReplicationTask.html
|
6997
|
+
# [7]: https://docs.aws.amazon.com/dms/latest/APIReference/API_StartReplicationTaskAssessmentRun.html
|
6998
|
+
# [8]: https://docs.aws.amazon.com/dms/latest/APIReference/API_StartReplicationTaskAssessment.html
|
6896
6999
|
# @return [String]
|
6897
7000
|
#
|
6898
7001
|
# @!attribute [rw] last_failure_message
|
@@ -6910,7 +7013,7 @@ module Aws::DatabaseMigrationService
|
|
6910
7013
|
# load completed.
|
6911
7014
|
#
|
6912
7015
|
# * `"STOP_REASON_CACHED_CHANGES_NOT_APPLIED"` – In a full-load and
|
6913
|
-
# CDC migration, the full
|
7016
|
+
# CDC migration, the full load stopped as specified before starting
|
6914
7017
|
# the CDC migration.
|
6915
7018
|
#
|
6916
7019
|
# * `"STOP_REASON_SERVER_TIME"` – The migration stopped at the
|
@@ -6979,6 +7082,17 @@ module Aws::DatabaseMigrationService
|
|
6979
7082
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
|
6980
7083
|
# @return [String]
|
6981
7084
|
#
|
7085
|
+
# @!attribute [rw] target_replication_instance_arn
|
7086
|
+
# The ARN of the replication instance to which this task is moved in
|
7087
|
+
# response to running the [ `MoveReplicationTask` ][1] operation.
|
7088
|
+
# Otherwise, this response parameter isn't a member of the
|
7089
|
+
# `ReplicationTask` object.
|
7090
|
+
#
|
7091
|
+
#
|
7092
|
+
#
|
7093
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_MoveReplicationTask.html
|
7094
|
+
# @return [String]
|
7095
|
+
#
|
6982
7096
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTask AWS API Documentation
|
6983
7097
|
#
|
6984
7098
|
class ReplicationTask < Struct.new(
|
@@ -6999,7 +7113,8 @@ module Aws::DatabaseMigrationService
|
|
6999
7113
|
:recovery_checkpoint,
|
7000
7114
|
:replication_task_arn,
|
7001
7115
|
:replication_task_stats,
|
7002
|
-
:task_data
|
7116
|
+
:task_data,
|
7117
|
+
:target_replication_instance_arn)
|
7003
7118
|
SENSITIVE = []
|
7004
7119
|
include Aws::Structure
|
7005
7120
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-databasemigrationservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.47.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|