aws-sdk 2.1411.0 → 2.1413.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.
- package/CHANGELOG.md +15 -1
- package/README.md +1 -1
- package/apis/dms-2016-01-01.min.json +643 -216
- package/apis/dms-2016-01-01.paginators.json +15 -0
- package/apis/ec2-2016-11-15.min.json +281 -278
- package/apis/glue-2017-03-31.min.json +146 -131
- package/apis/location-2020-11-19.min.json +79 -40
- package/apis/logs-2014-03-28.min.json +32 -33
- package/apis/medialive-2017-10-14.min.json +322 -188
- package/apis/mediatailor-2018-04-23.min.json +209 -191
- package/apis/outposts-2019-12-03.paginators.json +12 -6
- package/apis/quicksight-2018-04-01.min.json +561 -528
- package/clients/cloudwatchlogs.d.ts +32 -18
- package/clients/dms.d.ts +632 -7
- package/clients/ec2.d.ts +10 -5
- package/clients/glue.d.ts +21 -0
- package/clients/location.d.ts +50 -14
- package/clients/medialive.d.ts +101 -0
- package/clients/mediatailor.d.ts +21 -0
- package/clients/outposts.d.ts +4 -4
- package/clients/quicksight.d.ts +53 -7
- package/clients/rds.d.ts +35 -35
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +11 -11
- package/dist/aws-sdk.js +395 -354
- package/dist/aws-sdk.min.js +70 -70
- package/lib/core.js +1 -1
- package/lib/credentials/shared_ini_file_credentials.js +2 -0
- package/package.json +1 -1
package/clients/dms.d.ts
CHANGED
@@ -68,6 +68,14 @@ declare class DMS extends Service {
|
|
68
68
|
* Creates a Fleet Advisor collector using the specified parameters.
|
69
69
|
*/
|
70
70
|
createFleetAdvisorCollector(callback?: (err: AWSError, data: DMS.Types.CreateFleetAdvisorCollectorResponse) => void): Request<DMS.Types.CreateFleetAdvisorCollectorResponse, AWSError>;
|
71
|
+
/**
|
72
|
+
* Creates a configuration that you can later provide to configure and start an DMS Serverless replication. You can also provide options to validate the configuration inputs before you start the replication.
|
73
|
+
*/
|
74
|
+
createReplicationConfig(params: DMS.Types.CreateReplicationConfigMessage, callback?: (err: AWSError, data: DMS.Types.CreateReplicationConfigResponse) => void): Request<DMS.Types.CreateReplicationConfigResponse, AWSError>;
|
75
|
+
/**
|
76
|
+
* Creates a configuration that you can later provide to configure and start an DMS Serverless replication. You can also provide options to validate the configuration inputs before you start the replication.
|
77
|
+
*/
|
78
|
+
createReplicationConfig(callback?: (err: AWSError, data: DMS.Types.CreateReplicationConfigResponse) => void): Request<DMS.Types.CreateReplicationConfigResponse, AWSError>;
|
71
79
|
/**
|
72
80
|
* Creates the replication instance using the specified parameters. DMS requires that your account have certain roles with appropriate permissions before you can create a replication instance. For information on the required roles, see Creating the IAM Roles to Use With the CLI and DMS API. For information on the required permissions, see IAM Permissions Needed to Use DMS.
|
73
81
|
*/
|
@@ -77,11 +85,11 @@ declare class DMS extends Service {
|
|
77
85
|
*/
|
78
86
|
createReplicationInstance(callback?: (err: AWSError, data: DMS.Types.CreateReplicationInstanceResponse) => void): Request<DMS.Types.CreateReplicationInstanceResponse, AWSError>;
|
79
87
|
/**
|
80
|
-
* Creates a replication subnet group given a list of the subnet IDs in a VPC. The VPC needs to have at least one subnet in at least two availability zones in the Amazon Web Services Region, otherwise the service will throw a ReplicationSubnetGroupDoesNotCoverEnoughAZs exception.
|
88
|
+
* Creates a replication subnet group given a list of the subnet IDs in a VPC. The VPC needs to have at least one subnet in at least two availability zones in the Amazon Web Services Region, otherwise the service will throw a ReplicationSubnetGroupDoesNotCoverEnoughAZs exception. If a replication subnet group exists in your Amazon Web Services account, the CreateReplicationSubnetGroup action returns the following error message: The Replication Subnet Group already exists. In this case, delete the existing replication subnet group. To do so, use the DeleteReplicationSubnetGroup action. Optionally, choose Subnet groups in the DMS console, then choose your subnet group. Next, choose Delete from Actions.
|
81
89
|
*/
|
82
90
|
createReplicationSubnetGroup(params: DMS.Types.CreateReplicationSubnetGroupMessage, callback?: (err: AWSError, data: DMS.Types.CreateReplicationSubnetGroupResponse) => void): Request<DMS.Types.CreateReplicationSubnetGroupResponse, AWSError>;
|
83
91
|
/**
|
84
|
-
* Creates a replication subnet group given a list of the subnet IDs in a VPC. The VPC needs to have at least one subnet in at least two availability zones in the Amazon Web Services Region, otherwise the service will throw a ReplicationSubnetGroupDoesNotCoverEnoughAZs exception.
|
92
|
+
* Creates a replication subnet group given a list of the subnet IDs in a VPC. The VPC needs to have at least one subnet in at least two availability zones in the Amazon Web Services Region, otherwise the service will throw a ReplicationSubnetGroupDoesNotCoverEnoughAZs exception. If a replication subnet group exists in your Amazon Web Services account, the CreateReplicationSubnetGroup action returns the following error message: The Replication Subnet Group already exists. In this case, delete the existing replication subnet group. To do so, use the DeleteReplicationSubnetGroup action. Optionally, choose Subnet groups in the DMS console, then choose your subnet group. Next, choose Delete from Actions.
|
85
93
|
*/
|
86
94
|
createReplicationSubnetGroup(callback?: (err: AWSError, data: DMS.Types.CreateReplicationSubnetGroupResponse) => void): Request<DMS.Types.CreateReplicationSubnetGroupResponse, AWSError>;
|
87
95
|
/**
|
@@ -140,6 +148,14 @@ declare class DMS extends Service {
|
|
140
148
|
* Deletes the specified Fleet Advisor collector databases.
|
141
149
|
*/
|
142
150
|
deleteFleetAdvisorDatabases(callback?: (err: AWSError, data: DMS.Types.DeleteFleetAdvisorDatabasesResponse) => void): Request<DMS.Types.DeleteFleetAdvisorDatabasesResponse, AWSError>;
|
151
|
+
/**
|
152
|
+
* Deletes an DMS Serverless replication configuration. This effectively deprovisions any and all replications that use this configuration. You can't delete the configuration for an DMS Serverless replication that is ongoing. You can delete the configuration when the replication is in a non-RUNNING and non-STARTING state.
|
153
|
+
*/
|
154
|
+
deleteReplicationConfig(params: DMS.Types.DeleteReplicationConfigMessage, callback?: (err: AWSError, data: DMS.Types.DeleteReplicationConfigResponse) => void): Request<DMS.Types.DeleteReplicationConfigResponse, AWSError>;
|
155
|
+
/**
|
156
|
+
* Deletes an DMS Serverless replication configuration. This effectively deprovisions any and all replications that use this configuration. You can't delete the configuration for an DMS Serverless replication that is ongoing. You can delete the configuration when the replication is in a non-RUNNING and non-STARTING state.
|
157
|
+
*/
|
158
|
+
deleteReplicationConfig(callback?: (err: AWSError, data: DMS.Types.DeleteReplicationConfigResponse) => void): Request<DMS.Types.DeleteReplicationConfigResponse, AWSError>;
|
143
159
|
/**
|
144
160
|
* Deletes the specified replication instance. You must delete any migration tasks that are associated with the replication instance before you can delete it.
|
145
161
|
*/
|
@@ -332,6 +348,14 @@ declare class DMS extends Service {
|
|
332
348
|
* Returns the status of the RefreshSchemas operation.
|
333
349
|
*/
|
334
350
|
describeRefreshSchemasStatus(callback?: (err: AWSError, data: DMS.Types.DescribeRefreshSchemasStatusResponse) => void): Request<DMS.Types.DescribeRefreshSchemasStatusResponse, AWSError>;
|
351
|
+
/**
|
352
|
+
* Returns one or more existing DMS Serverless replication configurations as a list of structures.
|
353
|
+
*/
|
354
|
+
describeReplicationConfigs(params: DMS.Types.DescribeReplicationConfigsMessage, callback?: (err: AWSError, data: DMS.Types.DescribeReplicationConfigsResponse) => void): Request<DMS.Types.DescribeReplicationConfigsResponse, AWSError>;
|
355
|
+
/**
|
356
|
+
* Returns one or more existing DMS Serverless replication configurations as a list of structures.
|
357
|
+
*/
|
358
|
+
describeReplicationConfigs(callback?: (err: AWSError, data: DMS.Types.DescribeReplicationConfigsResponse) => void): Request<DMS.Types.DescribeReplicationConfigsResponse, AWSError>;
|
335
359
|
/**
|
336
360
|
* Returns information about the task logs for the specified task.
|
337
361
|
*/
|
@@ -356,6 +380,14 @@ declare class DMS extends Service {
|
|
356
380
|
* Returns information about the replication subnet groups.
|
357
381
|
*/
|
358
382
|
describeReplicationSubnetGroups(callback?: (err: AWSError, data: DMS.Types.DescribeReplicationSubnetGroupsResponse) => void): Request<DMS.Types.DescribeReplicationSubnetGroupsResponse, AWSError>;
|
383
|
+
/**
|
384
|
+
* Returns table and schema statistics for one or more provisioned replications that use a given DMS Serverless replication configuration.
|
385
|
+
*/
|
386
|
+
describeReplicationTableStatistics(params: DMS.Types.DescribeReplicationTableStatisticsMessage, callback?: (err: AWSError, data: DMS.Types.DescribeReplicationTableStatisticsResponse) => void): Request<DMS.Types.DescribeReplicationTableStatisticsResponse, AWSError>;
|
387
|
+
/**
|
388
|
+
* Returns table and schema statistics for one or more provisioned replications that use a given DMS Serverless replication configuration.
|
389
|
+
*/
|
390
|
+
describeReplicationTableStatistics(callback?: (err: AWSError, data: DMS.Types.DescribeReplicationTableStatisticsResponse) => void): Request<DMS.Types.DescribeReplicationTableStatisticsResponse, AWSError>;
|
359
391
|
/**
|
360
392
|
* Returns the task assessment results from the Amazon S3 bucket that DMS creates in your Amazon Web Services account. This action always returns the latest results. For more information about DMS task assessments, see Creating a task assessment report in the Database Migration Service User Guide.
|
361
393
|
*/
|
@@ -388,6 +420,14 @@ declare class DMS extends Service {
|
|
388
420
|
* Returns information about replication tasks for your account in the current region.
|
389
421
|
*/
|
390
422
|
describeReplicationTasks(callback?: (err: AWSError, data: DMS.Types.DescribeReplicationTasksResponse) => void): Request<DMS.Types.DescribeReplicationTasksResponse, AWSError>;
|
423
|
+
/**
|
424
|
+
* Provides details on replication progress by returning status information for one or more provisioned DMS Serverless replications.
|
425
|
+
*/
|
426
|
+
describeReplications(params: DMS.Types.DescribeReplicationsMessage, callback?: (err: AWSError, data: DMS.Types.DescribeReplicationsResponse) => void): Request<DMS.Types.DescribeReplicationsResponse, AWSError>;
|
427
|
+
/**
|
428
|
+
* Provides details on replication progress by returning status information for one or more provisioned DMS Serverless replications.
|
429
|
+
*/
|
430
|
+
describeReplications(callback?: (err: AWSError, data: DMS.Types.DescribeReplicationsResponse) => void): Request<DMS.Types.DescribeReplicationsResponse, AWSError>;
|
391
431
|
/**
|
392
432
|
* Returns information about the schema for the specified endpoint.
|
393
433
|
*/
|
@@ -436,6 +476,14 @@ declare class DMS extends Service {
|
|
436
476
|
* Modifies an existing DMS event notification subscription.
|
437
477
|
*/
|
438
478
|
modifyEventSubscription(callback?: (err: AWSError, data: DMS.Types.ModifyEventSubscriptionResponse) => void): Request<DMS.Types.ModifyEventSubscriptionResponse, AWSError>;
|
479
|
+
/**
|
480
|
+
* Modifies an existing DMS Serverless replication configuration that you can use to start a replication. This command includes input validation and logic to check the state of any replication that uses this configuration. You can only modify a replication configuration before any replication that uses it has started. As soon as you have initially started a replication with a given configuiration, you can't modify that configuration, even if you stop it. Other run statuses that allow you to run this command include FAILED and CREATED. A provisioning state that allows you to run this command is FAILED_PROVISION.
|
481
|
+
*/
|
482
|
+
modifyReplicationConfig(params: DMS.Types.ModifyReplicationConfigMessage, callback?: (err: AWSError, data: DMS.Types.ModifyReplicationConfigResponse) => void): Request<DMS.Types.ModifyReplicationConfigResponse, AWSError>;
|
483
|
+
/**
|
484
|
+
* Modifies an existing DMS Serverless replication configuration that you can use to start a replication. This command includes input validation and logic to check the state of any replication that uses this configuration. You can only modify a replication configuration before any replication that uses it has started. As soon as you have initially started a replication with a given configuiration, you can't modify that configuration, even if you stop it. Other run statuses that allow you to run this command include FAILED and CREATED. A provisioning state that allows you to run this command is FAILED_PROVISION.
|
485
|
+
*/
|
486
|
+
modifyReplicationConfig(callback?: (err: AWSError, data: DMS.Types.ModifyReplicationConfigResponse) => void): Request<DMS.Types.ModifyReplicationConfigResponse, AWSError>;
|
439
487
|
/**
|
440
488
|
* Modifies the replication instance to apply new settings. You can change one or more parameters by specifying these parameters and the new values in the request. Some settings are applied during the maintenance window.
|
441
489
|
*/
|
@@ -484,6 +532,14 @@ declare class DMS extends Service {
|
|
484
532
|
* Populates the schema for the specified endpoint. This is an asynchronous operation and can take several minutes. You can check the status of this operation by calling the DescribeRefreshSchemasStatus operation.
|
485
533
|
*/
|
486
534
|
refreshSchemas(callback?: (err: AWSError, data: DMS.Types.RefreshSchemasResponse) => void): Request<DMS.Types.RefreshSchemasResponse, AWSError>;
|
535
|
+
/**
|
536
|
+
* Reloads the target database table with the source data for a given DMS Serverless replication configuration. You can only use this operation with a task in the RUNNING state, otherwise the service will throw an InvalidResourceStateFault exception.
|
537
|
+
*/
|
538
|
+
reloadReplicationTables(params: DMS.Types.ReloadReplicationTablesMessage, callback?: (err: AWSError, data: DMS.Types.ReloadReplicationTablesResponse) => void): Request<DMS.Types.ReloadReplicationTablesResponse, AWSError>;
|
539
|
+
/**
|
540
|
+
* Reloads the target database table with the source data for a given DMS Serverless replication configuration. You can only use this operation with a task in the RUNNING state, otherwise the service will throw an InvalidResourceStateFault exception.
|
541
|
+
*/
|
542
|
+
reloadReplicationTables(callback?: (err: AWSError, data: DMS.Types.ReloadReplicationTablesResponse) => void): Request<DMS.Types.ReloadReplicationTablesResponse, AWSError>;
|
487
543
|
/**
|
488
544
|
* Reloads the target database table with the source data. You can only use this operation with a task in the RUNNING state, otherwise the service will throw an InvalidResourceStateFault exception.
|
489
545
|
*/
|
@@ -512,6 +568,14 @@ declare class DMS extends Service {
|
|
512
568
|
* Starts the analysis of your source database to provide recommendations of target engines. You can create recommendations for multiple source databases using BatchStartRecommendations.
|
513
569
|
*/
|
514
570
|
startRecommendations(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
571
|
+
/**
|
572
|
+
* For a given DMS Serverless replication configuration, DMS connects to the source endpoint and collects the metadata to analyze the replication workload. Using this metadata, DMS then computes and provisions the required capacity and starts replicating to the target endpoint using the server resources that DMS has provisioned for the DMS Serverless replication.
|
573
|
+
*/
|
574
|
+
startReplication(params: DMS.Types.StartReplicationMessage, callback?: (err: AWSError, data: DMS.Types.StartReplicationResponse) => void): Request<DMS.Types.StartReplicationResponse, AWSError>;
|
575
|
+
/**
|
576
|
+
* For a given DMS Serverless replication configuration, DMS connects to the source endpoint and collects the metadata to analyze the replication workload. Using this metadata, DMS then computes and provisions the required capacity and starts replicating to the target endpoint using the server resources that DMS has provisioned for the DMS Serverless replication.
|
577
|
+
*/
|
578
|
+
startReplication(callback?: (err: AWSError, data: DMS.Types.StartReplicationResponse) => void): Request<DMS.Types.StartReplicationResponse, AWSError>;
|
515
579
|
/**
|
516
580
|
* Starts the replication task. For more information about DMS tasks, see Working with Migration Tasks in the Database Migration Service User Guide.
|
517
581
|
*/
|
@@ -536,6 +600,14 @@ declare class DMS extends Service {
|
|
536
600
|
* Starts a new premigration assessment run for one or more individual assessments of a migration task. The assessments that you can specify depend on the source and target database engine and the migration type defined for the given task. To run this operation, your migration task must already be created. After you run this operation, you can review the status of each individual assessment. You can also run the migration task manually after the assessment run and its individual assessments complete.
|
537
601
|
*/
|
538
602
|
startReplicationTaskAssessmentRun(callback?: (err: AWSError, data: DMS.Types.StartReplicationTaskAssessmentRunResponse) => void): Request<DMS.Types.StartReplicationTaskAssessmentRunResponse, AWSError>;
|
603
|
+
/**
|
604
|
+
* For a given DMS Serverless replication configuration, DMS stops any and all ongoing DMS Serverless replications. This command doesn't deprovision the stopped replications.
|
605
|
+
*/
|
606
|
+
stopReplication(params: DMS.Types.StopReplicationMessage, callback?: (err: AWSError, data: DMS.Types.StopReplicationResponse) => void): Request<DMS.Types.StopReplicationResponse, AWSError>;
|
607
|
+
/**
|
608
|
+
* For a given DMS Serverless replication configuration, DMS stops any and all ongoing DMS Serverless replications. This command doesn't deprovision the stopped replications.
|
609
|
+
*/
|
610
|
+
stopReplication(callback?: (err: AWSError, data: DMS.Types.StopReplicationResponse) => void): Request<DMS.Types.StopReplicationResponse, AWSError>;
|
539
611
|
/**
|
540
612
|
* Stops the replication task.
|
541
613
|
*/
|
@@ -850,6 +922,44 @@ declare namespace DMS {
|
|
850
922
|
export type CollectorStatus = "UNREGISTERED"|"ACTIVE"|string;
|
851
923
|
export type CollectorsList = CollectorShortInfoResponse[];
|
852
924
|
export type CompressionTypeValue = "none"|"gzip"|string;
|
925
|
+
export interface ComputeConfig {
|
926
|
+
/**
|
927
|
+
* The Availability Zone where the DMS Serverless replication using this configuration will run. The default value is a random, system-chosen Availability Zone in the configuration's Amazon Web Services Region, for example, "us-west-2". You can't set this parameter if the MultiAZ parameter is set to true.
|
928
|
+
*/
|
929
|
+
AvailabilityZone?: String;
|
930
|
+
/**
|
931
|
+
* A list of custom DNS name servers supported for the DMS Serverless replication to access your source or target database. This list overrides the default name servers supported by the DMS Serverless replication. You can specify a comma-separated list of internet addresses for up to four DNS name servers. For example: "1.1.1.1,2.2.2.2,3.3.3.3,4.4.4.4"
|
932
|
+
*/
|
933
|
+
DnsNameServers?: String;
|
934
|
+
/**
|
935
|
+
* An Key Management Service (KMS) key Amazon Resource Name (ARN) that is used to encrypt the data during DMS Serverless replication. If you don't specify a value for the KmsKeyId parameter, DMS uses your default encryption key. KMS creates the default encryption key for your Amazon Web Services account. Your Amazon Web Services account has a different default encryption key for each Amazon Web Services Region.
|
936
|
+
*/
|
937
|
+
KmsKeyId?: String;
|
938
|
+
/**
|
939
|
+
* Specifies the maximum value of the DMS capacity units (DCUs) for which a given DMS Serverless replication can be provisioned. A single DCU is 2GB of RAM, with 2 DCUs as the minimum value allowed. The list of valid DCU values includes 2, 4, 8, 16, 32, 64, 128, 192, 256, and 384. So, the maximum value that you can specify for DMS Serverless is 384. The MaxCapacityUnits parameter is the only DCU parameter you are required to specify.
|
940
|
+
*/
|
941
|
+
MaxCapacityUnits?: IntegerOptional;
|
942
|
+
/**
|
943
|
+
* Specifies the minimum value of the DMS capacity units (DCUs) for which a given DMS Serverless replication can be provisioned. A single DCU is 2GB of RAM, with 2 DCUs as the minimum value allowed. The list of valid DCU values includes 2, 4, 8, 16, 32, 64, 128, 192, 256, and 384. So, the minimum DCU value that you can specify for DMS Serverless is 2. You don't have to specify a value for the MinCapacityUnits parameter. If you don't set this value, DMS scans the current activity of available source tables to identify an optimum setting for this parameter. If there is no current source activity or DMS can't otherwise identify a more appropriate value, it sets this parameter to the minimum DCU value allowed, 2.
|
944
|
+
*/
|
945
|
+
MinCapacityUnits?: IntegerOptional;
|
946
|
+
/**
|
947
|
+
* Specifies whether the DMS Serverless replication is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if the MultiAZ parameter is set to true.
|
948
|
+
*/
|
949
|
+
MultiAZ?: BooleanOptional;
|
950
|
+
/**
|
951
|
+
* The weekly time range during which system maintenance can occur for the DMS Serverless replication, in Universal Coordinated Time (UTC). The format is ddd:hh24:mi-ddd:hh24:mi. The default is a 30-minute window selected at random from an 8-hour block of time per Amazon Web Services Region. This maintenance occurs on a random day of the week. Valid values for days of the week include Mon, Tue, Wed, Thu, Fri, Sat, and Sun. Constraints include a minimum 30-minute window.
|
952
|
+
*/
|
953
|
+
PreferredMaintenanceWindow?: String;
|
954
|
+
/**
|
955
|
+
* Specifies a subnet group identifier to associate with the DMS Serverless replication.
|
956
|
+
*/
|
957
|
+
ReplicationSubnetGroupId?: String;
|
958
|
+
/**
|
959
|
+
* Specifies the virtual private cloud (VPC) security group to use with the DMS Serverless replication. The VPC security group must work with the VPC containing the replication.
|
960
|
+
*/
|
961
|
+
VpcSecurityGroupIds?: StringList;
|
962
|
+
}
|
853
963
|
export interface Connection {
|
854
964
|
/**
|
855
965
|
* The ARN of the replication instance.
|
@@ -1008,6 +1118,10 @@ declare namespace DMS {
|
|
1008
1118
|
* Settings in JSON format for the source GCP MySQL endpoint.
|
1009
1119
|
*/
|
1010
1120
|
GcpMySQLSettings?: GcpMySQLSettings;
|
1121
|
+
/**
|
1122
|
+
* Settings in JSON format for the target Amazon Timestream endpoint.
|
1123
|
+
*/
|
1124
|
+
TimestreamSettings?: TimestreamSettings;
|
1011
1125
|
}
|
1012
1126
|
export interface CreateEndpointResponse {
|
1013
1127
|
/**
|
@@ -1091,6 +1205,54 @@ declare namespace DMS {
|
|
1091
1205
|
*/
|
1092
1206
|
S3BucketName?: String;
|
1093
1207
|
}
|
1208
|
+
export interface CreateReplicationConfigMessage {
|
1209
|
+
/**
|
1210
|
+
* A unique identifier that you want to use to create a ReplicationConfigArn that is returned as part of the output from this action. You can then pass this output ReplicationConfigArn as the value of the ReplicationConfigArn option for other actions to identify both DMS Serverless replications and replication configurations that you want those actions to operate on. For some actions, you can also use either this unique identifier or a corresponding ARN in action filters to identify the specific replication and replication configuration to operate on.
|
1211
|
+
*/
|
1212
|
+
ReplicationConfigIdentifier: String;
|
1213
|
+
/**
|
1214
|
+
* The Amazon Resource Name (ARN) of the source endpoint for this DMS Serverless replication configuration.
|
1215
|
+
*/
|
1216
|
+
SourceEndpointArn: String;
|
1217
|
+
/**
|
1218
|
+
* The Amazon Resource Name (ARN) of the target endpoint for this DMS serverless replication configuration.
|
1219
|
+
*/
|
1220
|
+
TargetEndpointArn: String;
|
1221
|
+
/**
|
1222
|
+
* Configuration parameters for provisioning an DMS Serverless replication.
|
1223
|
+
*/
|
1224
|
+
ComputeConfig: ComputeConfig;
|
1225
|
+
/**
|
1226
|
+
* The type of DMS Serverless replication to provision using this replication configuration. Possible values: "full-load" "cdc" "full-load-and-cdc"
|
1227
|
+
*/
|
1228
|
+
ReplicationType: MigrationTypeValue;
|
1229
|
+
/**
|
1230
|
+
* JSON table mappings for DMS Serverless replications that are provisioned using this replication configuration. For more information, see Specifying table selection and transformations rules using JSON.
|
1231
|
+
*/
|
1232
|
+
TableMappings: String;
|
1233
|
+
/**
|
1234
|
+
* Optional JSON settings for DMS Serverless replications that are provisioned using this replication configuration. For example, see Change processing tuning settings.
|
1235
|
+
*/
|
1236
|
+
ReplicationSettings?: String;
|
1237
|
+
/**
|
1238
|
+
* Optional JSON settings for specifying supplemental data. For more information, see Specifying supplemental data for task settings.
|
1239
|
+
*/
|
1240
|
+
SupplementalSettings?: String;
|
1241
|
+
/**
|
1242
|
+
* Optional unique value or name that you set for a given resource that can be used to construct an Amazon Resource Name (ARN) for that resource. For more information, see Fine-grained access control using resource names and tags.
|
1243
|
+
*/
|
1244
|
+
ResourceIdentifier?: String;
|
1245
|
+
/**
|
1246
|
+
* One or more optional tags associated with resources used by the DMS Serverless replication. For more information, see Tagging resources in Database Migration Service.
|
1247
|
+
*/
|
1248
|
+
Tags?: TagList;
|
1249
|
+
}
|
1250
|
+
export interface CreateReplicationConfigResponse {
|
1251
|
+
/**
|
1252
|
+
* Configuration parameters returned from the DMS Serverless replication after it is created.
|
1253
|
+
*/
|
1254
|
+
ReplicationConfig?: ReplicationConfig;
|
1255
|
+
}
|
1094
1256
|
export interface CreateReplicationInstanceMessage {
|
1095
1257
|
/**
|
1096
1258
|
* The replication instance identifier. This parameter is stored as a lowercase string. Constraints: Must contain 1-63 alphanumeric characters or hyphens. First character must be a letter. Can't end with a hyphen or contain two consecutive hyphens. Example: myrepinstance
|
@@ -1101,7 +1263,7 @@ declare namespace DMS {
|
|
1101
1263
|
*/
|
1102
1264
|
AllocatedStorage?: IntegerOptional;
|
1103
1265
|
/**
|
1104
|
-
* The compute and memory capacity of the replication instance as defined for the specified replication instance class. For example to specify the instance class dms.c4.large, set this parameter to "dms.c4.large". For more information on the settings and capacities for the available replication instance classes, see
|
1266
|
+
* The compute and memory capacity of the replication instance as defined for the specified replication instance class. For example to specify the instance class dms.c4.large, set this parameter to "dms.c4.large". For more information on the settings and capacities for the available replication instance classes, see Choosing the right DMS replication instance; and, Selecting the best size for a replication instance.
|
1105
1267
|
*/
|
1106
1268
|
ReplicationInstanceClass: String;
|
1107
1269
|
/**
|
@@ -1109,7 +1271,7 @@ declare namespace DMS {
|
|
1109
1271
|
*/
|
1110
1272
|
VpcSecurityGroupIds?: VpcSecurityGroupIdList;
|
1111
1273
|
/**
|
1112
|
-
* The Availability Zone where the replication instance will be created. The default value is a random, system-chosen Availability Zone in the endpoint's Amazon Web Services Region, for example: us-east-1d
|
1274
|
+
* The Availability Zone where the replication instance will be created. The default value is a random, system-chosen Availability Zone in the endpoint's Amazon Web Services Region, for example: us-east-1d.
|
1113
1275
|
*/
|
1114
1276
|
AvailabilityZone?: String;
|
1115
1277
|
/**
|
@@ -1399,6 +1561,18 @@ declare namespace DMS {
|
|
1399
1561
|
*/
|
1400
1562
|
DatabaseIds?: StringList;
|
1401
1563
|
}
|
1564
|
+
export interface DeleteReplicationConfigMessage {
|
1565
|
+
/**
|
1566
|
+
* The replication config to delete.
|
1567
|
+
*/
|
1568
|
+
ReplicationConfigArn: String;
|
1569
|
+
}
|
1570
|
+
export interface DeleteReplicationConfigResponse {
|
1571
|
+
/**
|
1572
|
+
* Configuration parameters returned for the DMS Serverless replication after it is deleted.
|
1573
|
+
*/
|
1574
|
+
ReplicationConfig?: ReplicationConfig;
|
1575
|
+
}
|
1402
1576
|
export interface DeleteReplicationInstanceMessage {
|
1403
1577
|
/**
|
1404
1578
|
* The Amazon Resource Name (ARN) of the replication instance to be deleted.
|
@@ -1545,7 +1719,7 @@ declare namespace DMS {
|
|
1545
1719
|
}
|
1546
1720
|
export interface DescribeEndpointSettingsMessage {
|
1547
1721
|
/**
|
1548
|
-
* The
|
1722
|
+
* The database engine used for your source or target endpoint.
|
1549
1723
|
*/
|
1550
1724
|
EngineName: String;
|
1551
1725
|
/**
|
@@ -1931,6 +2105,30 @@ declare namespace DMS {
|
|
1931
2105
|
*/
|
1932
2106
|
RefreshSchemasStatus?: RefreshSchemasStatus;
|
1933
2107
|
}
|
2108
|
+
export interface DescribeReplicationConfigsMessage {
|
2109
|
+
/**
|
2110
|
+
* Filters applied to the replication configs.
|
2111
|
+
*/
|
2112
|
+
Filters?: FilterList;
|
2113
|
+
/**
|
2114
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
|
2115
|
+
*/
|
2116
|
+
MaxRecords?: IntegerOptional;
|
2117
|
+
/**
|
2118
|
+
* An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
|
2119
|
+
*/
|
2120
|
+
Marker?: String;
|
2121
|
+
}
|
2122
|
+
export interface DescribeReplicationConfigsResponse {
|
2123
|
+
/**
|
2124
|
+
* An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
|
2125
|
+
*/
|
2126
|
+
Marker?: String;
|
2127
|
+
/**
|
2128
|
+
* Returned configuration parameters that describe each provisioned DMS Serverless replication.
|
2129
|
+
*/
|
2130
|
+
ReplicationConfigs?: ReplicationConfigList;
|
2131
|
+
}
|
1934
2132
|
export interface DescribeReplicationInstanceTaskLogsMessage {
|
1935
2133
|
/**
|
1936
2134
|
* The Amazon Resource Name (ARN) of the replication instance.
|
@@ -2007,6 +2205,38 @@ declare namespace DMS {
|
|
2007
2205
|
*/
|
2008
2206
|
ReplicationSubnetGroups?: ReplicationSubnetGroups;
|
2009
2207
|
}
|
2208
|
+
export interface DescribeReplicationTableStatisticsMessage {
|
2209
|
+
/**
|
2210
|
+
* The replication config to describe.
|
2211
|
+
*/
|
2212
|
+
ReplicationConfigArn: String;
|
2213
|
+
/**
|
2214
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
|
2215
|
+
*/
|
2216
|
+
MaxRecords?: IntegerOptional;
|
2217
|
+
/**
|
2218
|
+
* An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
|
2219
|
+
*/
|
2220
|
+
Marker?: String;
|
2221
|
+
/**
|
2222
|
+
* Filters applied to the replication table statistics.
|
2223
|
+
*/
|
2224
|
+
Filters?: FilterList;
|
2225
|
+
}
|
2226
|
+
export interface DescribeReplicationTableStatisticsResponse {
|
2227
|
+
/**
|
2228
|
+
* The Amazon Resource Name of the replication config.
|
2229
|
+
*/
|
2230
|
+
ReplicationConfigArn?: String;
|
2231
|
+
/**
|
2232
|
+
* An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
|
2233
|
+
*/
|
2234
|
+
Marker?: String;
|
2235
|
+
/**
|
2236
|
+
* Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.
|
2237
|
+
*/
|
2238
|
+
ReplicationTableStatistics?: ReplicationTableStatisticsList;
|
2239
|
+
}
|
2010
2240
|
export interface DescribeReplicationTaskAssessmentResultsMessage {
|
2011
2241
|
/**
|
2012
2242
|
* The Amazon Resource Name (ARN) string that uniquely identifies the task. When this input parameter is specified, the API returns only one result and ignore the values of the MaxRecords and Marker parameters.
|
@@ -2111,6 +2341,30 @@ declare namespace DMS {
|
|
2111
2341
|
*/
|
2112
2342
|
ReplicationTasks?: ReplicationTaskList;
|
2113
2343
|
}
|
2344
|
+
export interface DescribeReplicationsMessage {
|
2345
|
+
/**
|
2346
|
+
* Filters applied to the replications.
|
2347
|
+
*/
|
2348
|
+
Filters?: FilterList;
|
2349
|
+
/**
|
2350
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
|
2351
|
+
*/
|
2352
|
+
MaxRecords?: IntegerOptional;
|
2353
|
+
/**
|
2354
|
+
* An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
|
2355
|
+
*/
|
2356
|
+
Marker?: String;
|
2357
|
+
}
|
2358
|
+
export interface DescribeReplicationsResponse {
|
2359
|
+
/**
|
2360
|
+
* An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
|
2361
|
+
*/
|
2362
|
+
Marker?: String;
|
2363
|
+
/**
|
2364
|
+
* The replication descriptions.
|
2365
|
+
*/
|
2366
|
+
Replications?: ReplicationList;
|
2367
|
+
}
|
2114
2368
|
export interface DescribeSchemasMessage {
|
2115
2369
|
/**
|
2116
2370
|
* The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
|
@@ -2223,6 +2477,14 @@ declare namespace DMS {
|
|
2223
2477
|
* The full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the DocumentDB endpoint connection details.
|
2224
2478
|
*/
|
2225
2479
|
SecretsManagerSecretId?: String;
|
2480
|
+
/**
|
2481
|
+
* If true, DMS retrieves the entire document from the DocumentDB source during migration. This may cause a migration failure if the server response exceeds bandwidth limits. To fetch only updates and deletes during migration, set this parameter to false.
|
2482
|
+
*/
|
2483
|
+
UseUpdateLookUp?: BooleanOptional;
|
2484
|
+
/**
|
2485
|
+
* If true, DMS replicates data to shard collections. DMS only uses this setting if the target endpoint is a DocumentDB elastic cluster. When this setting is true, note the following: You must set TargetTablePrepMode to nothing. DMS automatically sets useUpdateLookup to false.
|
2486
|
+
*/
|
2487
|
+
ReplicateShardCollections?: BooleanOptional;
|
2226
2488
|
}
|
2227
2489
|
export type DoubleOptional = number;
|
2228
2490
|
export interface DynamoDbSettings {
|
@@ -2393,6 +2655,10 @@ declare namespace DMS {
|
|
2393
2655
|
* Settings in JSON format for the source GCP MySQL endpoint.
|
2394
2656
|
*/
|
2395
2657
|
GcpMySQLSettings?: GcpMySQLSettings;
|
2658
|
+
/**
|
2659
|
+
* The settings for the Amazon Timestream target endpoint. For more information, see the TimestreamSettings structure.
|
2660
|
+
*/
|
2661
|
+
TimestreamSettings?: TimestreamSettings;
|
2396
2662
|
}
|
2397
2663
|
export type EndpointList = Endpoint[];
|
2398
2664
|
export interface EndpointSetting {
|
@@ -2776,7 +3042,12 @@ declare namespace DMS {
|
|
2776
3042
|
* For SASL/SSL authentication, DMS supports the SCRAM-SHA-512 mechanism by default. DMS versions 3.5.0 and later also support the PLAIN mechanism. To use the PLAIN mechanism, set this parameter to PLAIN.
|
2777
3043
|
*/
|
2778
3044
|
SaslMechanism?: KafkaSaslMechanism;
|
3045
|
+
/**
|
3046
|
+
* Sets hostname verification for the certificate. This setting is supported in DMS version 3.5.1 and later.
|
3047
|
+
*/
|
3048
|
+
SslEndpointIdentificationAlgorithm?: KafkaSslEndpointIdentificationAlgorithm;
|
2779
3049
|
}
|
3050
|
+
export type KafkaSslEndpointIdentificationAlgorithm = "none"|"https"|string;
|
2780
3051
|
export type KeyList = String[];
|
2781
3052
|
export interface KinesisSettings {
|
2782
3053
|
/**
|
@@ -2865,6 +3136,7 @@ declare namespace DMS {
|
|
2865
3136
|
}
|
2866
3137
|
export type Long = number;
|
2867
3138
|
export type LongOptional = number;
|
3139
|
+
export type LongVarcharMappingType = "wstring"|"clob"|"nclob"|string;
|
2868
3140
|
export type MessageFormatValue = "json"|"json-unformatted"|string;
|
2869
3141
|
export interface MicrosoftSQLServerSettings {
|
2870
3142
|
/**
|
@@ -3067,6 +3339,10 @@ declare namespace DMS {
|
|
3067
3339
|
* Settings in JSON format for the source GCP MySQL endpoint.
|
3068
3340
|
*/
|
3069
3341
|
GcpMySQLSettings?: GcpMySQLSettings;
|
3342
|
+
/**
|
3343
|
+
* Settings in JSON format for the target Amazon Timestream endpoint.
|
3344
|
+
*/
|
3345
|
+
TimestreamSettings?: TimestreamSettings;
|
3070
3346
|
}
|
3071
3347
|
export interface ModifyEndpointResponse {
|
3072
3348
|
/**
|
@@ -3102,6 +3378,50 @@ declare namespace DMS {
|
|
3102
3378
|
*/
|
3103
3379
|
EventSubscription?: EventSubscription;
|
3104
3380
|
}
|
3381
|
+
export interface ModifyReplicationConfigMessage {
|
3382
|
+
/**
|
3383
|
+
* The Amazon Resource Name of the replication to modify.
|
3384
|
+
*/
|
3385
|
+
ReplicationConfigArn: String;
|
3386
|
+
/**
|
3387
|
+
* The new replication config to apply to the replication.
|
3388
|
+
*/
|
3389
|
+
ReplicationConfigIdentifier?: String;
|
3390
|
+
/**
|
3391
|
+
* The type of replication.
|
3392
|
+
*/
|
3393
|
+
ReplicationType?: MigrationTypeValue;
|
3394
|
+
/**
|
3395
|
+
* Table mappings specified in the replication.
|
3396
|
+
*/
|
3397
|
+
TableMappings?: String;
|
3398
|
+
/**
|
3399
|
+
* The settings for the replication.
|
3400
|
+
*/
|
3401
|
+
ReplicationSettings?: String;
|
3402
|
+
/**
|
3403
|
+
* Additional settings for the replication.
|
3404
|
+
*/
|
3405
|
+
SupplementalSettings?: String;
|
3406
|
+
/**
|
3407
|
+
* Configuration parameters for provisioning an DMS Serverless replication.
|
3408
|
+
*/
|
3409
|
+
ComputeConfig?: ComputeConfig;
|
3410
|
+
/**
|
3411
|
+
* The Amazon Resource Name (ARN) of the source endpoint for this DMS serverless replication configuration.
|
3412
|
+
*/
|
3413
|
+
SourceEndpointArn?: String;
|
3414
|
+
/**
|
3415
|
+
* The Amazon Resource Name (ARN) of the target endpoint for this DMS serverless replication configuration.
|
3416
|
+
*/
|
3417
|
+
TargetEndpointArn?: String;
|
3418
|
+
}
|
3419
|
+
export interface ModifyReplicationConfigResponse {
|
3420
|
+
/**
|
3421
|
+
* Information about the serverless replication config that was modified.
|
3422
|
+
*/
|
3423
|
+
ReplicationConfig?: ReplicationConfig;
|
3424
|
+
}
|
3105
3425
|
export interface ModifyReplicationInstanceMessage {
|
3106
3426
|
/**
|
3107
3427
|
* The Amazon Resource Name (ARN) of the replication instance.
|
@@ -3279,6 +3599,14 @@ declare namespace DMS {
|
|
3279
3599
|
* The full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the MongoDB endpoint connection details.
|
3280
3600
|
*/
|
3281
3601
|
SecretsManagerSecretId?: String;
|
3602
|
+
/**
|
3603
|
+
* If true, DMS retrieves the entire document from the MongoDB source during migration. This may cause a migration failure if the server response exceeds bandwidth limits. To fetch only updates and deletes during migration, set this parameter to false.
|
3604
|
+
*/
|
3605
|
+
UseUpdateLookUp?: BooleanOptional;
|
3606
|
+
/**
|
3607
|
+
* If true, DMS replicates data to shard collections. DMS only uses this setting if the target endpoint is a DocumentDB elastic cluster. When this setting is true, note the following: You must set TargetTablePrepMode to nothing. DMS automatically sets useUpdateLookup to false.
|
3608
|
+
*/
|
3609
|
+
ReplicateShardCollections?: BooleanOptional;
|
3282
3610
|
}
|
3283
3611
|
export interface MoveReplicationTaskMessage {
|
3284
3612
|
/**
|
@@ -3554,6 +3882,10 @@ declare namespace DMS {
|
|
3554
3882
|
* When true, converts timestamps with the timezone datatype to their UTC value.
|
3555
3883
|
*/
|
3556
3884
|
ConvertTimestampWithZoneToUTC?: BooleanOptional;
|
3885
|
+
/**
|
3886
|
+
* The timeframe in minutes to check for open transactions for a CDC-only task. You can specify an integer value between 0 (the default) and 240 (the maximum). This parameter is only valid in DMS version 3.5.0 and later. DMS supports a window of up to 9.5 hours including the value for OpenTransactionWindow.
|
3887
|
+
*/
|
3888
|
+
OpenTransactionWindow?: IntegerOptional;
|
3557
3889
|
}
|
3558
3890
|
export interface OrderableReplicationInstance {
|
3559
3891
|
/**
|
@@ -3705,6 +4037,40 @@ declare namespace DMS {
|
|
3705
4037
|
* When true, lets PostgreSQL migrate the boolean type as boolean. By default, PostgreSQL migrates booleans as varchar(5).
|
3706
4038
|
*/
|
3707
4039
|
MapBooleanAsBoolean?: BooleanOptional;
|
4040
|
+
/**
|
4041
|
+
* When true, DMS migrates JSONB values as CLOB.
|
4042
|
+
*/
|
4043
|
+
MapJsonbAsClob?: BooleanOptional;
|
4044
|
+
/**
|
4045
|
+
* When true, DMS migrates LONG values as VARCHAR.
|
4046
|
+
*/
|
4047
|
+
MapLongVarcharAs?: LongVarcharMappingType;
|
4048
|
+
}
|
4049
|
+
export interface ProvisionData {
|
4050
|
+
/**
|
4051
|
+
* The current provisioning state
|
4052
|
+
*/
|
4053
|
+
ProvisionState?: String;
|
4054
|
+
/**
|
4055
|
+
* The number of capacity units the replication is using.
|
4056
|
+
*/
|
4057
|
+
ProvisionedCapacityUnits?: Integer;
|
4058
|
+
/**
|
4059
|
+
* The timestamp when DMS provisioned replication resources.
|
4060
|
+
*/
|
4061
|
+
DateProvisioned?: TStamp;
|
4062
|
+
/**
|
4063
|
+
* Whether the new provisioning is available to the replication.
|
4064
|
+
*/
|
4065
|
+
IsNewProvisioningAvailable?: Boolean;
|
4066
|
+
/**
|
4067
|
+
* The timestamp when provisioning became available.
|
4068
|
+
*/
|
4069
|
+
DateNewProvisioningDataAvailable?: TStamp;
|
4070
|
+
/**
|
4071
|
+
* A message describing the reason that DMS provisioned new resources for the serverless replication.
|
4072
|
+
*/
|
4073
|
+
ReasonForNewProvisioningData?: String;
|
3708
4074
|
}
|
3709
4075
|
export interface RdsConfiguration {
|
3710
4076
|
/**
|
@@ -3739,6 +4105,10 @@ declare namespace DMS {
|
|
3739
4105
|
* Describes the deployment option for the recommended Amazon RDS DB instance. The deployment options include Multi-AZ and Single-AZ deployments. Valid values include "MULTI_AZ" and "SINGLE_AZ".
|
3740
4106
|
*/
|
3741
4107
|
DeploymentOption?: String;
|
4108
|
+
/**
|
4109
|
+
* Describes the recommended target Amazon RDS engine version.
|
4110
|
+
*/
|
4111
|
+
EngineVersion?: String;
|
3742
4112
|
}
|
3743
4113
|
export interface RdsRecommendation {
|
3744
4114
|
/**
|
@@ -3775,6 +4145,10 @@ declare namespace DMS {
|
|
3775
4145
|
* The required deployment option for the Amazon RDS DB instance. Valid values include "MULTI_AZ" for Multi-AZ deployments and "SINGLE_AZ" for Single-AZ deployments.
|
3776
4146
|
*/
|
3777
4147
|
DeploymentOption?: String;
|
4148
|
+
/**
|
4149
|
+
* The required target Amazon RDS engine version.
|
4150
|
+
*/
|
4151
|
+
EngineVersion?: String;
|
3778
4152
|
}
|
3779
4153
|
export interface RebootReplicationInstanceMessage {
|
3780
4154
|
/**
|
@@ -4041,6 +4415,26 @@ declare namespace DMS {
|
|
4041
4415
|
export type RefreshSchemasStatusTypeValue = "successful"|"failed"|"refreshing"|string;
|
4042
4416
|
export type ReleaseStatusValues = "beta"|"prod"|string;
|
4043
4417
|
export type ReloadOptionValue = "data-reload"|"validate-only"|string;
|
4418
|
+
export interface ReloadReplicationTablesMessage {
|
4419
|
+
/**
|
4420
|
+
* The Amazon Resource Name of the replication config for which to reload tables.
|
4421
|
+
*/
|
4422
|
+
ReplicationConfigArn: String;
|
4423
|
+
/**
|
4424
|
+
* The list of tables to reload.
|
4425
|
+
*/
|
4426
|
+
TablesToReload: TableListToReload;
|
4427
|
+
/**
|
4428
|
+
* Options for reload. Specify data-reload to reload the data and re-validate it if validation is enabled. Specify validate-only to re-validate the table. This option applies only when validation is enabled for the replication.
|
4429
|
+
*/
|
4430
|
+
ReloadOption?: ReloadOptionValue;
|
4431
|
+
}
|
4432
|
+
export interface ReloadReplicationTablesResponse {
|
4433
|
+
/**
|
4434
|
+
* The Amazon Resource Name of the replication config for which to reload tables.
|
4435
|
+
*/
|
4436
|
+
ReplicationConfigArn?: String;
|
4437
|
+
}
|
4044
4438
|
export interface ReloadTablesMessage {
|
4045
4439
|
/**
|
4046
4440
|
* The Amazon Resource Name (ARN) of the replication task.
|
@@ -4073,6 +4467,127 @@ declare namespace DMS {
|
|
4073
4467
|
}
|
4074
4468
|
export interface RemoveTagsFromResourceResponse {
|
4075
4469
|
}
|
4470
|
+
export interface Replication {
|
4471
|
+
/**
|
4472
|
+
* The identifier for the ReplicationConfig associated with the replication.
|
4473
|
+
*/
|
4474
|
+
ReplicationConfigIdentifier?: String;
|
4475
|
+
/**
|
4476
|
+
* The Amazon Resource Name for the ReplicationConfig associated with the replication.
|
4477
|
+
*/
|
4478
|
+
ReplicationConfigArn?: String;
|
4479
|
+
/**
|
4480
|
+
* The Amazon Resource Name for an existing Endpoint the serverless replication uses for its data source.
|
4481
|
+
*/
|
4482
|
+
SourceEndpointArn?: String;
|
4483
|
+
/**
|
4484
|
+
* The Amazon Resource Name for an existing Endpoint the serverless replication uses for its data target.
|
4485
|
+
*/
|
4486
|
+
TargetEndpointArn?: String;
|
4487
|
+
/**
|
4488
|
+
* The type of the serverless replication.
|
4489
|
+
*/
|
4490
|
+
ReplicationType?: MigrationTypeValue;
|
4491
|
+
/**
|
4492
|
+
* The current status of the serverless replication.
|
4493
|
+
*/
|
4494
|
+
Status?: String;
|
4495
|
+
/**
|
4496
|
+
* Information about provisioning resources for an DMS serverless replication.
|
4497
|
+
*/
|
4498
|
+
ProvisionData?: ProvisionData;
|
4499
|
+
/**
|
4500
|
+
* The reason the replication task was stopped. This response parameter can return one of the following values: "Stop Reason NORMAL" "Stop Reason RECOVERABLE_ERROR" "Stop Reason FATAL_ERROR" "Stop Reason FULL_LOAD_ONLY_FINISHED" "Stop Reason STOPPED_AFTER_FULL_LOAD" – Full load completed, with cached changes not applied "Stop Reason STOPPED_AFTER_CACHED_EVENTS" – Full load completed, with cached changes applied "Stop Reason EXPRESS_LICENSE_LIMITS_REACHED" "Stop Reason STOPPED_AFTER_DDL_APPLY" – User-defined stop task after DDL applied "Stop Reason STOPPED_DUE_TO_LOW_MEMORY" "Stop Reason STOPPED_DUE_TO_LOW_DISK" "Stop Reason STOPPED_AT_SERVER_TIME" – User-defined server time for stopping task "Stop Reason STOPPED_AT_COMMIT_TIME" – User-defined commit time for stopping task "Stop Reason RECONFIGURATION_RESTART" "Stop Reason RECYCLE_TASK"
|
4501
|
+
*/
|
4502
|
+
StopReason?: String;
|
4503
|
+
/**
|
4504
|
+
* Error and other information about why a serverless replication failed.
|
4505
|
+
*/
|
4506
|
+
FailureMessages?: StringList;
|
4507
|
+
/**
|
4508
|
+
* This object provides a collection of statistics about a serverless replication.
|
4509
|
+
*/
|
4510
|
+
ReplicationStats?: ReplicationStats;
|
4511
|
+
/**
|
4512
|
+
* The replication type.
|
4513
|
+
*/
|
4514
|
+
StartReplicationType?: String;
|
4515
|
+
/**
|
4516
|
+
* Indicates the start time for a change data capture (CDC) operation. Use either CdcStartTime or CdcStartPosition to specify when you want a CDC operation to start. Specifying both values results in an error.
|
4517
|
+
*/
|
4518
|
+
CdcStartTime?: TStamp;
|
4519
|
+
/**
|
4520
|
+
* Indicates the start time for a change data capture (CDC) operation. Use either CdcStartTime or CdcStartPosition to specify when you want a CDC operation to start. Specifying both values results in an error.
|
4521
|
+
*/
|
4522
|
+
CdcStartPosition?: String;
|
4523
|
+
/**
|
4524
|
+
* Indicates when you want a change data capture (CDC) operation to stop. The value can be either server time or commit time.
|
4525
|
+
*/
|
4526
|
+
CdcStopPosition?: String;
|
4527
|
+
/**
|
4528
|
+
* Indicates the last checkpoint that occurred during a change data capture (CDC) operation. You can provide this value to the CdcStartPosition parameter to start a CDC operation that begins at that checkpoint.
|
4529
|
+
*/
|
4530
|
+
RecoveryCheckpoint?: String;
|
4531
|
+
/**
|
4532
|
+
* The time the serverless replication was created.
|
4533
|
+
*/
|
4534
|
+
ReplicationCreateTime?: TStamp;
|
4535
|
+
/**
|
4536
|
+
* The time the serverless replication was updated.
|
4537
|
+
*/
|
4538
|
+
ReplicationUpdateTime?: TStamp;
|
4539
|
+
/**
|
4540
|
+
* The timestamp when replication was last stopped.
|
4541
|
+
*/
|
4542
|
+
ReplicationLastStopTime?: TStamp;
|
4543
|
+
}
|
4544
|
+
export interface ReplicationConfig {
|
4545
|
+
/**
|
4546
|
+
* The identifier for the ReplicationConfig associated with the replication.
|
4547
|
+
*/
|
4548
|
+
ReplicationConfigIdentifier?: String;
|
4549
|
+
/**
|
4550
|
+
* The Amazon Resource Name (ARN) of this DMS Serverless replication configuration.
|
4551
|
+
*/
|
4552
|
+
ReplicationConfigArn?: String;
|
4553
|
+
/**
|
4554
|
+
* The Amazon Resource Name (ARN) of the source endpoint for this DMS serverless replication configuration.
|
4555
|
+
*/
|
4556
|
+
SourceEndpointArn?: String;
|
4557
|
+
/**
|
4558
|
+
* The Amazon Resource Name (ARN) of the target endpoint for this DMS serverless replication configuration.
|
4559
|
+
*/
|
4560
|
+
TargetEndpointArn?: String;
|
4561
|
+
/**
|
4562
|
+
* The type of the replication.
|
4563
|
+
*/
|
4564
|
+
ReplicationType?: MigrationTypeValue;
|
4565
|
+
/**
|
4566
|
+
* Configuration parameters for provisioning an DMS serverless replication.
|
4567
|
+
*/
|
4568
|
+
ComputeConfig?: ComputeConfig;
|
4569
|
+
/**
|
4570
|
+
* Configuration parameters for an DMS serverless replication.
|
4571
|
+
*/
|
4572
|
+
ReplicationSettings?: String;
|
4573
|
+
/**
|
4574
|
+
* Additional parameters for an DMS serverless replication.
|
4575
|
+
*/
|
4576
|
+
SupplementalSettings?: String;
|
4577
|
+
/**
|
4578
|
+
* Table mappings specified in the replication.
|
4579
|
+
*/
|
4580
|
+
TableMappings?: String;
|
4581
|
+
/**
|
4582
|
+
* The time the serverless replication config was created.
|
4583
|
+
*/
|
4584
|
+
ReplicationConfigCreateTime?: TStamp;
|
4585
|
+
/**
|
4586
|
+
* The time the serverless replication config was updated.
|
4587
|
+
*/
|
4588
|
+
ReplicationConfigUpdateTime?: TStamp;
|
4589
|
+
}
|
4590
|
+
export type ReplicationConfigList = ReplicationConfig[];
|
4076
4591
|
export type ReplicationEndpointTypeValue = "source"|"target"|string;
|
4077
4592
|
export interface ReplicationInstance {
|
4078
4593
|
/**
|
@@ -4195,6 +4710,7 @@ declare namespace DMS {
|
|
4195
4710
|
ReplicationInstanceTaskLogSize?: Long;
|
4196
4711
|
}
|
4197
4712
|
export type ReplicationInstanceTaskLogsList = ReplicationInstanceTaskLog[];
|
4713
|
+
export type ReplicationList = Replication[];
|
4198
4714
|
export interface ReplicationPendingModifiedValues {
|
4199
4715
|
/**
|
4200
4716
|
* The compute and memory capacity of the replication instance as defined for the specified replication instance class. For more information on the settings and capacities for the available replication instance classes, see Selecting the right DMS replication instance for your migration.
|
@@ -4217,6 +4733,52 @@ declare namespace DMS {
|
|
4217
4733
|
*/
|
4218
4734
|
NetworkType?: String;
|
4219
4735
|
}
|
4736
|
+
export interface ReplicationStats {
|
4737
|
+
/**
|
4738
|
+
* The percent complete for the full load serverless replication.
|
4739
|
+
*/
|
4740
|
+
FullLoadProgressPercent?: Integer;
|
4741
|
+
/**
|
4742
|
+
* The elapsed time of the replication, in milliseconds.
|
4743
|
+
*/
|
4744
|
+
ElapsedTimeMillis?: Long;
|
4745
|
+
/**
|
4746
|
+
* The number of tables loaded for this replication.
|
4747
|
+
*/
|
4748
|
+
TablesLoaded?: Integer;
|
4749
|
+
/**
|
4750
|
+
* The number of tables currently loading for this replication.
|
4751
|
+
*/
|
4752
|
+
TablesLoading?: Integer;
|
4753
|
+
/**
|
4754
|
+
* The number of tables queued for this replication.
|
4755
|
+
*/
|
4756
|
+
TablesQueued?: Integer;
|
4757
|
+
/**
|
4758
|
+
* The number of errors that have occured for this replication.
|
4759
|
+
*/
|
4760
|
+
TablesErrored?: Integer;
|
4761
|
+
/**
|
4762
|
+
* The date the replication was started either with a fresh start or a target reload.
|
4763
|
+
*/
|
4764
|
+
FreshStartDate?: TStamp;
|
4765
|
+
/**
|
4766
|
+
* The date the replication is scheduled to start.
|
4767
|
+
*/
|
4768
|
+
StartDate?: TStamp;
|
4769
|
+
/**
|
4770
|
+
* The date the replication was stopped.
|
4771
|
+
*/
|
4772
|
+
StopDate?: TStamp;
|
4773
|
+
/**
|
4774
|
+
* The date the replication full load was started.
|
4775
|
+
*/
|
4776
|
+
FullLoadStartDate?: TStamp;
|
4777
|
+
/**
|
4778
|
+
* The date the replication full load was finished.
|
4779
|
+
*/
|
4780
|
+
FullLoadFinishDate?: TStamp;
|
4781
|
+
}
|
4220
4782
|
export interface ReplicationSubnetGroup {
|
4221
4783
|
/**
|
4222
4784
|
* The identifier of the replication instance subnet group.
|
@@ -4244,6 +4806,7 @@ declare namespace DMS {
|
|
4244
4806
|
SupportedNetworkTypes?: StringList;
|
4245
4807
|
}
|
4246
4808
|
export type ReplicationSubnetGroups = ReplicationSubnetGroup[];
|
4809
|
+
export type ReplicationTableStatisticsList = TableStatistics[];
|
4247
4810
|
export interface ReplicationTask {
|
4248
4811
|
/**
|
4249
4812
|
* The user-assigned replication task identifier or name. Constraints: Must contain 1-255 alphanumeric characters or hyphens. First character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens.
|
@@ -4570,7 +5133,7 @@ declare namespace DMS {
|
|
4570
5133
|
*/
|
4571
5134
|
EnableStatistics?: BooleanOptional;
|
4572
5135
|
/**
|
4573
|
-
* A value that enables a full load to write INSERT operations to the comma-separated value (.csv) output files only to indicate how the rows were added to the source database. DMS supports the IncludeOpForFullLoad parameter in versions 3.1.4 and later. For full load, records can only be inserted. By default (the false setting), no information is recorded in these output files for a full load to indicate that the rows were inserted at the source database. If IncludeOpForFullLoad is set to true or y, the INSERT is recorded as an I annotation in the first field of the .csv file. This allows the format of your target records from a full load to be consistent with the target records from a CDC load. This setting works together with the CdcInsertsOnly and the CdcInsertsAndUpdates parameters for output to .csv files only. For more information about how these settings work together, see Indicating Source DB Operations in Migrated S3 Data in the Database Migration Service User Guide..
|
5136
|
+
* A value that enables a full load to write INSERT operations to the comma-separated value (.csv) or .parquet output files only to indicate how the rows were added to the source database. DMS supports the IncludeOpForFullLoad parameter in versions 3.1.4 and later. DMS supports the use of the .parquet files with the IncludeOpForFullLoad parameter in versions 3.4.7 and later. For full load, records can only be inserted. By default (the false setting), no information is recorded in these output files for a full load to indicate that the rows were inserted at the source database. If IncludeOpForFullLoad is set to true or y, the INSERT is recorded as an I annotation in the first field of the .csv file. This allows the format of your target records from a full load to be consistent with the target records from a CDC load. This setting works together with the CdcInsertsOnly and the CdcInsertsAndUpdates parameters for output to .csv files only. For more information about how these settings work together, see Indicating Source DB Operations in Migrated S3 Data in the Database Migration Service User Guide..
|
4574
5137
|
*/
|
4575
5138
|
IncludeOpForFullLoad?: BooleanOptional;
|
4576
5139
|
/**
|
@@ -4586,7 +5149,7 @@ declare namespace DMS {
|
|
4586
5149
|
*/
|
4587
5150
|
ParquetTimestampInMillisecond?: BooleanOptional;
|
4588
5151
|
/**
|
4589
|
-
* A value that enables a change data capture (CDC) load to write INSERT and UPDATE operations to .csv or .parquet (columnar storage) output files. The default setting is false, but when CdcInsertsAndUpdates is set to true or y, only INSERTs and UPDATEs from the source database are migrated to the .csv or .parquet file.
|
5152
|
+
* A value that enables a change data capture (CDC) load to write INSERT and UPDATE operations to .csv or .parquet (columnar storage) output files. The default setting is false, but when CdcInsertsAndUpdates is set to true or y, only INSERTs and UPDATEs from the source database are migrated to the .csv or .parquet file. DMS supports the use of the .parquet files in versions 3.4.7 and later. How these INSERTs and UPDATEs are recorded depends on the value of the IncludeOpForFullLoad parameter. If IncludeOpForFullLoad is set to true, the first field of every CDC record is set to either I or U to indicate INSERT and UPDATE operations at the source. But if IncludeOpForFullLoad is set to false, CDC records are written without an indication of INSERT or UPDATE operations at the source. For more information about how these settings work together, see Indicating Source DB Operations in Migrated S3 Data in the Database Migration Service User Guide.. DMS supports the use of the CdcInsertsAndUpdates parameter in versions 3.3.1 and later. CdcInsertsOnly and CdcInsertsAndUpdates can't both be set to true for the same endpoint. Set either CdcInsertsOnly or CdcInsertsAndUpdates to true for the same endpoint, but not both.
|
4590
5153
|
*/
|
4591
5154
|
CdcInsertsAndUpdates?: BooleanOptional;
|
4592
5155
|
/**
|
@@ -4768,6 +5331,34 @@ declare namespace DMS {
|
|
4768
5331
|
Settings: RecommendationSettings;
|
4769
5332
|
}
|
4770
5333
|
export type StartRecommendationsRequestEntryList = StartRecommendationsRequestEntry[];
|
5334
|
+
export interface StartReplicationMessage {
|
5335
|
+
/**
|
5336
|
+
* The Amazon Resource Name of the replication for which to start replication.
|
5337
|
+
*/
|
5338
|
+
ReplicationConfigArn: String;
|
5339
|
+
/**
|
5340
|
+
* The replication type.
|
5341
|
+
*/
|
5342
|
+
StartReplicationType: String;
|
5343
|
+
/**
|
5344
|
+
* Indicates the start time for a change data capture (CDC) operation. Use either CdcStartTime or CdcStartPosition to specify when you want a CDC operation to start. Specifying both values results in an error.
|
5345
|
+
*/
|
5346
|
+
CdcStartTime?: TStamp;
|
5347
|
+
/**
|
5348
|
+
* Indicates when you want a change data capture (CDC) operation to start. Use either CdcStartPosition or CdcStartTime to specify when you want a CDC operation to start. Specifying both values results in an error. The value can be in date, checkpoint, or LSN/SCN format.
|
5349
|
+
*/
|
5350
|
+
CdcStartPosition?: String;
|
5351
|
+
/**
|
5352
|
+
* Indicates when you want a change data capture (CDC) operation to stop. The value can be either server time or commit time.
|
5353
|
+
*/
|
5354
|
+
CdcStopPosition?: String;
|
5355
|
+
}
|
5356
|
+
export interface StartReplicationResponse {
|
5357
|
+
/**
|
5358
|
+
* The replication that DMS started.
|
5359
|
+
*/
|
5360
|
+
Replication?: Replication;
|
5361
|
+
}
|
4771
5362
|
export interface StartReplicationTaskAssessmentMessage {
|
4772
5363
|
/**
|
4773
5364
|
* The Amazon Resource Name (ARN) of the replication task.
|
@@ -4853,6 +5444,18 @@ declare namespace DMS {
|
|
4853
5444
|
ReplicationTask?: ReplicationTask;
|
4854
5445
|
}
|
4855
5446
|
export type StartReplicationTaskTypeValue = "start-replication"|"resume-processing"|"reload-target"|string;
|
5447
|
+
export interface StopReplicationMessage {
|
5448
|
+
/**
|
5449
|
+
* The Amazon Resource Name of the replication to stop.
|
5450
|
+
*/
|
5451
|
+
ReplicationConfigArn: String;
|
5452
|
+
}
|
5453
|
+
export interface StopReplicationResponse {
|
5454
|
+
/**
|
5455
|
+
* The replication that DMS stopped.
|
5456
|
+
*/
|
5457
|
+
Replication?: Replication;
|
5458
|
+
}
|
4856
5459
|
export interface StopReplicationTaskMessage {
|
4857
5460
|
/**
|
4858
5461
|
* The Amazon Resource Name(ARN) of the replication task to be stopped.
|
@@ -5075,6 +5678,28 @@ declare namespace DMS {
|
|
5075
5678
|
*/
|
5076
5679
|
Connection?: Connection;
|
5077
5680
|
}
|
5681
|
+
export interface TimestreamSettings {
|
5682
|
+
/**
|
5683
|
+
* Database name for the endpoint.
|
5684
|
+
*/
|
5685
|
+
DatabaseName: String;
|
5686
|
+
/**
|
5687
|
+
* Set this attribute to specify the length of time to store all of the tables in memory that are migrated into Amazon Timestream from the source database. Time is measured in units of hours. When Timestream data comes in, it first resides in memory for the specified duration, which allows quick access to it.
|
5688
|
+
*/
|
5689
|
+
MemoryDuration: IntegerOptional;
|
5690
|
+
/**
|
5691
|
+
* Set this attribute to specify the default magnetic duration applied to the Amazon Timestream tables in days. This is the number of days that records remain in magnetic store before being discarded. For more information, see Storage in the Amazon Timestream Developer Guide.
|
5692
|
+
*/
|
5693
|
+
MagneticDuration: IntegerOptional;
|
5694
|
+
/**
|
5695
|
+
* Set this attribute to true to specify that DMS only applies inserts and updates, and not deletes. Amazon Timestream does not allow deleting records, so if this value is false, DMS nulls out the corresponding record in the Timestream database rather than deleting it.
|
5696
|
+
*/
|
5697
|
+
CdcInsertsAndUpdates?: BooleanOptional;
|
5698
|
+
/**
|
5699
|
+
* Set this attribute to true to enable memory store writes. When this value is false, DMS does not write records that are older in days than the value specified in MagneticDuration, because Amazon Timestream does not allow memory writes by default. For more information, see Storage in the Amazon Timestream Developer Guide.
|
5700
|
+
*/
|
5701
|
+
EnableMagneticStoreWrites?: BooleanOptional;
|
5702
|
+
}
|
5078
5703
|
export type TlogAccessMode = "BackupOnly"|"PreferBackup"|"PreferTlog"|"TlogOnly"|string;
|
5079
5704
|
export interface UpdateSubscriptionsToEventBridgeMessage {
|
5080
5705
|
/**
|