Database Migration Service

This page documents function available when using the Database_Migration_Service module, created with @service Database_Migration_Service.

Index

Documentation

Main.Database_Migration_Service.add_tags_to_resourceMethod
add_tags_to_resource(resource_arn, tags)
add_tags_to_resource(resource_arn, tags, params::Dict{String,<:Any})

Adds metadata tags to an DMS resource, including replication instance, endpoint, subnet group, and migration task. These tags can also be used with cost allocation reporting to track cost associated with DMS resources, or used in a Condition statement in an IAM policy for DMS. For more information, see Tag data type description.

Arguments

  • resource_arn: Identifies the DMS resource to which tags should be added. The value for this parameter is an Amazon Resource Name (ARN). For DMS, you can tag a replication instance, an endpoint, or a replication task.
  • tags: One or more tags to be assigned to the resource.
Main.Database_Migration_Service.apply_pending_maintenance_actionMethod
apply_pending_maintenance_action(apply_action, opt_in_type, replication_instance_arn)
apply_pending_maintenance_action(apply_action, opt_in_type, replication_instance_arn, params::Dict{String,<:Any})

Applies a pending maintenance action to a resource (for example, to a replication instance).

Arguments

  • apply_action: The pending maintenance action to apply to this resource. Valid values: os-upgrade, system-update, db-upgrade
  • opt_in_type: A value that specifies the type of opt-in request, or undoes an opt-in request. You can't undo an opt-in request of type immediate. Valid values: immediate - Apply the maintenance action immediately. next-maintenance - Apply the maintenance action during the next maintenance window for the resource. undo-opt-in - Cancel any existing next-maintenance opt-in requests.
  • replication_instance_arn: The Amazon Resource Name (ARN) of the DMS resource that the pending maintenance action applies to.
Main.Database_Migration_Service.batch_start_recommendationsMethod
batch_start_recommendations()
batch_start_recommendations(params::Dict{String,<:Any})

Starts the analysis of up to 20 source databases to recommend target engines for each source database. This is a batch version of StartRecommendations. The result of analysis of each source database is reported individually in the response. Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Data": Provides information about source databases to analyze. After this analysis, Fleet Advisor recommends target engines for each source database.
Main.Database_Migration_Service.cancel_replication_task_assessment_runMethod
cancel_replication_task_assessment_run(replication_task_assessment_run_arn)
cancel_replication_task_assessment_run(replication_task_assessment_run_arn, params::Dict{String,<:Any})

Cancels a single premigration assessment run. This operation prevents any individual assessments from running if they haven't started running. It also attempts to cancel any individual assessments that are currently running.

Arguments

  • replication_task_assessment_run_arn: Amazon Resource Name (ARN) of the premigration assessment run to be canceled.
Main.Database_Migration_Service.create_data_providerMethod
create_data_provider(engine, settings)
create_data_provider(engine, settings, params::Dict{String,<:Any})

Creates a data provider using the provided settings. A data provider stores a data store type and location information about your database.

Arguments

  • engine: The type of database engine for the data provider. Valid values include "aurora", "aurora-postgresql", "mysql", "oracle", "postgres", "sqlserver", redshift, mariadb, mongodb, and docdb. A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
  • settings: The settings in JSON format for a data provider.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "DataProviderName": A user-friendly name for the data provider.
  • "Description": A user-friendly description of the data provider.
  • "Tags": One or more tags to be assigned to the data provider.
Main.Database_Migration_Service.create_endpointMethod
create_endpoint(endpoint_identifier, endpoint_type, engine_name)
create_endpoint(endpoint_identifier, endpoint_type, engine_name, params::Dict{String,<:Any})

Creates an endpoint using the provided settings. For a MySQL source or target endpoint, don't explicitly specify the database using the DatabaseName request parameter on the CreateEndpoint API call. Specifying DatabaseName when you create a MySQL endpoint replicates all the task tables to this single database. For MySQL endpoints, you specify the database only when you specify the schema in the table-mapping rules of the DMS task.

Arguments

  • endpoint_identifier: The database endpoint identifier. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
  • endpoint_type: The type of endpoint. Valid values are source and target.
  • engine_name: The type of engine for the endpoint. Valid values, depending on the EndpointType value, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "opensearch", "redshift", "s3", "db2", "db2-zos", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "docdb", "sqlserver", "neptune", and "babelfish".

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "CertificateArn": The Amazon Resource Name (ARN) for the certificate.
  • "DatabaseName": The name of the endpoint database. For a MySQL source or target endpoint, do not specify DatabaseName. To migrate to a specific database, use this setting and targetDbType.
  • "DmsTransferSettings": The settings in JSON format for the DMS transfer type of source endpoint. Possible settings include the following: ServiceAccessRoleArn - The Amazon Resource Name (ARN) used by the service access IAM role. The role must allow the iam:PassRole action. BucketName - The name of the S3 bucket to use. Shorthand syntax for these settings is as follows: ServiceAccessRoleArn=string,BucketName=string JSON syntax for these settings is as follows: { "ServiceAccessRoleArn": "string", "BucketName": "string", }
  • "DocDbSettings":
  • "DynamoDbSettings": Settings in JSON format for the target Amazon DynamoDB endpoint. For information about other available settings, see Using Object Mapping to Migrate Data to DynamoDB in the Database Migration Service User Guide.
  • "ElasticsearchSettings": Settings in JSON format for the target OpenSearch endpoint. For more information about the available settings, see Extra Connection Attributes When Using OpenSearch as a Target for DMS in the Database Migration Service User Guide.
  • "ExternalTableDefinition": The external table definition.
  • "ExtraConnectionAttributes": Additional attributes associated with the connection. Each attribute is specified as a name-value pair associated by an equal sign (=). Multiple attributes are separated by a semicolon (;) with no additional white space. For information on the attributes available for connecting your source or target endpoint, see Working with DMS Endpoints in the Database Migration Service User Guide.
  • "GcpMySQLSettings": Settings in JSON format for the source GCP MySQL endpoint.
  • "IBMDb2Settings": Settings in JSON format for the source IBM Db2 LUW endpoint. For information about other available settings, see Extra connection attributes when using Db2 LUW as a source for DMS in the Database Migration Service User Guide.
  • "KafkaSettings": Settings in JSON format for the target Apache Kafka endpoint. For more information about the available settings, see Using object mapping to migrate data to a Kafka topic in the Database Migration Service User Guide.
  • "KinesisSettings": Settings in JSON format for the target endpoint for Amazon Kinesis Data Streams. For more information about the available settings, see Using object mapping to migrate data to a Kinesis data stream in the Database Migration Service User Guide.
  • "KmsKeyId": An KMS key identifier that is used to encrypt the connection parameters for the endpoint. If you don't specify a value for the KmsKeyId parameter, then 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.
  • "MicrosoftSQLServerSettings": Settings in JSON format for the source and target Microsoft SQL Server endpoint. For information about other available settings, see Extra connection attributes when using SQL Server as a source for DMS and Extra connection attributes when using SQL Server as a target for DMS in the Database Migration Service User Guide.
  • "MongoDbSettings": Settings in JSON format for the source MongoDB endpoint. For more information about the available settings, see Endpoint configuration settings when using MongoDB as a source for Database Migration Service in the Database Migration Service User Guide.
  • "MySQLSettings": Settings in JSON format for the source and target MySQL endpoint. For information about other available settings, see Extra connection attributes when using MySQL as a source for DMS and Extra connection attributes when using a MySQL-compatible database as a target for DMS in the Database Migration Service User Guide.
  • "NeptuneSettings": Settings in JSON format for the target Amazon Neptune endpoint. For more information about the available settings, see Specifying graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a target in the Database Migration Service User Guide.
  • "OracleSettings": Settings in JSON format for the source and target Oracle endpoint. For information about other available settings, see Extra connection attributes when using Oracle as a source for DMS and Extra connection attributes when using Oracle as a target for DMS in the Database Migration Service User Guide.
  • "Password": The password to be used to log in to the endpoint database.
  • "Port": The port used by the endpoint database.
  • "PostgreSQLSettings": Settings in JSON format for the source and target PostgreSQL endpoint. For information about other available settings, see Extra connection attributes when using PostgreSQL as a source for DMS and Extra connection attributes when using PostgreSQL as a target for DMS in the Database Migration Service User Guide.
  • "RedisSettings": Settings in JSON format for the target Redis endpoint.
  • "RedshiftSettings":
  • "ResourceIdentifier": A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, DMS generates a default identifier value for the end of EndpointArn.
  • "S3Settings": Settings in JSON format for the target Amazon S3 endpoint. For more information about the available settings, see Extra Connection Attributes When Using Amazon S3 as a Target for DMS in the Database Migration Service User Guide.
  • "ServerName": The name of the server where the endpoint database resides.
  • "ServiceAccessRoleArn": The Amazon Resource Name (ARN) for the service access role that you want to use to create the endpoint. The role must allow the iam:PassRole action.
  • "SslMode": The Secure Sockets Layer (SSL) mode to use for the SSL connection. The default is none
  • "SybaseSettings": Settings in JSON format for the source and target SAP ASE endpoint. For information about other available settings, see Extra connection attributes when using SAP ASE as a source for DMS and Extra connection attributes when using SAP ASE as a target for DMS in the Database Migration Service User Guide.
  • "Tags": One or more tags to be assigned to the endpoint.
  • "TimestreamSettings": Settings in JSON format for the target Amazon Timestream endpoint.
  • "Username": The user name to be used to log in to the endpoint database.
Main.Database_Migration_Service.create_event_subscriptionMethod
create_event_subscription(sns_topic_arn, subscription_name)
create_event_subscription(sns_topic_arn, subscription_name, params::Dict{String,<:Any})

Creates an DMS event notification subscription. You can specify the type of source (SourceType) you want to be notified of, provide a list of DMS source IDs (SourceIds) that triggers the events, and provide a list of event categories (EventCategories) for events you want to be notified of. If you specify both the SourceType and SourceIds, such as SourceType = replication-instance and SourceIdentifier = my-replinstance, you will be notified of all the replication instance events for the specified source. If you specify a SourceType but don't specify a SourceIdentifier, you receive notice of the events for that source type for all your DMS sources. If you don't specify either SourceType nor SourceIdentifier, you will be notified of events generated from all DMS sources belonging to your customer account. For more information about DMS events, see Working with Events and Notifications in the Database Migration Service User Guide.

Arguments

  • sns_topic_arn: The Amazon Resource Name (ARN) of the Amazon SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.
  • subscription_name: The name of the DMS event notification subscription. This name must be less than 255 characters.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Enabled": A Boolean value; set to true to activate the subscription, or set to false to create the subscription but not activate it.
  • "EventCategories": A list of event categories for a source type that you want to subscribe to. For more information, see Working with Events and Notifications in the Database Migration Service User Guide.
  • "SourceIds": A list of identifiers for which DMS provides notification events. If you don't specify a value, notifications are provided for all sources. If you specify multiple values, they must be of the same type. For example, if you specify a database instance ID, then all of the other values must be database instance IDs.
  • "SourceType": The type of DMS resource that generates the events. For example, if you want to be notified of events generated by a replication instance, you set this parameter to replication-instance. If this value isn't specified, all events are returned. Valid values: replication-instance | replication-task
  • "Tags": One or more tags to be assigned to the event subscription.
Main.Database_Migration_Service.create_fleet_advisor_collectorMethod
create_fleet_advisor_collector(collector_name, s3_bucket_name, service_access_role_arn)
create_fleet_advisor_collector(collector_name, s3_bucket_name, service_access_role_arn, params::Dict{String,<:Any})

Creates a Fleet Advisor collector using the specified parameters.

Arguments

  • collector_name: The name of your Fleet Advisor collector (for example, sample-collector).
  • s3_bucket_name: The Amazon S3 bucket that the Fleet Advisor collector uses to store inventory metadata.
  • service_access_role_arn: The IAM role that grants permissions to access the specified Amazon S3 bucket.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Description": A summary description of your Fleet Advisor collector.
Main.Database_Migration_Service.create_instance_profileMethod
create_instance_profile()
create_instance_profile(params::Dict{String,<:Any})

Creates the instance profile using the specified parameters.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "AvailabilityZone": The Availability Zone where the instance profile will be created. The default value is a random, system-chosen Availability Zone in the Amazon Web Services Region where your data provider is created, for examplem us-east-1d.
  • "Description": A user-friendly description of the instance profile.
  • "InstanceProfileName": A user-friendly name for the instance profile.
  • "KmsKeyArn": The Amazon Resource Name (ARN) of the KMS key that is used to encrypt the connection parameters for the instance profile. If you don't specify a value for the KmsKeyArn parameter, then 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.
  • "NetworkType": Specifies the network type for the instance profile. A value of IPV4 represents an instance profile with IPv4 network type and only supports IPv4 addressing. A value of IPV6 represents an instance profile with IPv6 network type and only supports IPv6 addressing. A value of DUAL represents an instance profile with dual network type that supports IPv4 and IPv6 addressing.
  • "PubliclyAccessible": Specifies the accessibility options for the instance profile. A value of true represents an instance profile with a public IP address. A value of false represents an instance profile with a private IP address. The default value is true.
  • "SubnetGroupIdentifier": A subnet group to associate with the instance profile.
  • "Tags": One or more tags to be assigned to the instance profile.
  • "VpcSecurityGroups": Specifies the VPC security group names to be used with the instance profile. The VPC security group must work with the VPC containing the instance profile.
Main.Database_Migration_Service.create_migration_projectMethod
create_migration_project(instance_profile_identifier, source_data_provider_descriptors, target_data_provider_descriptors)
create_migration_project(instance_profile_identifier, source_data_provider_descriptors, target_data_provider_descriptors, params::Dict{String,<:Any})

Creates the migration project using the specified parameters. You can run this action only after you create an instance profile and data providers using CreateInstanceProfile and CreateDataProvider.

Arguments

  • instance_profile_identifier: The identifier of the associated instance profile. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
  • source_data_provider_descriptors: Information about the source data provider, including the name, ARN, and Secrets Manager parameters.
  • target_data_provider_descriptors: Information about the target data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Description": A user-friendly description of the migration project.
  • "MigrationProjectName": A user-friendly name for the migration project.
  • "SchemaConversionApplicationAttributes": The schema conversion application attributes, including the Amazon S3 bucket name and Amazon S3 role ARN.
  • "Tags": One or more tags to be assigned to the migration project.
  • "TransformationRules": The settings in JSON format for migration rules. Migration rules make it possible for you to change the object names according to the rules that you specify. For example, you can change an object name to lowercase or uppercase, add or remove a prefix or suffix, or rename objects.
Main.Database_Migration_Service.create_replication_configMethod
create_replication_config(compute_config, replication_config_identifier, replication_type, source_endpoint_arn, table_mappings, target_endpoint_arn)
create_replication_config(compute_config, replication_config_identifier, replication_type, source_endpoint_arn, table_mappings, target_endpoint_arn, params::Dict{String,<:Any})

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.

Arguments

  • compute_config: Configuration parameters for provisioning an DMS Serverless replication.
  • replication_config_identifier: 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.
  • replication_type: The type of DMS Serverless replication to provision using this replication configuration. Possible values: "full-load" "cdc" "full-load-and-cdc"
  • source_endpoint_arn: The Amazon Resource Name (ARN) of the source endpoint for this DMS Serverless replication configuration.
  • table_mappings: 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.
  • target_endpoint_arn: The Amazon Resource Name (ARN) of the target endpoint for this DMS serverless replication configuration.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "ReplicationSettings": Optional JSON settings for DMS Serverless replications that are provisioned using this replication configuration. For example, see Change processing tuning settings.
  • "ResourceIdentifier": 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.
  • "SupplementalSettings": Optional JSON settings for specifying supplemental data. For more information, see Specifying supplemental data for task settings.
  • "Tags": One or more optional tags associated with resources used by the DMS Serverless replication. For more information, see Tagging resources in Database Migration Service.
Main.Database_Migration_Service.create_replication_instanceMethod
create_replication_instance(replication_instance_class, replication_instance_identifier)
create_replication_instance(replication_instance_class, replication_instance_identifier, params::Dict{String,<:Any})

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. If you don't specify a version when creating a replication instance, DMS will create the instance using the default engine version. For information about the default engine version, see Release Notes.

Arguments

  • replication_instance_class: 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.
  • replication_instance_identifier: 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

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "AllocatedStorage": The amount of storage (in gigabytes) to be initially allocated for the replication instance.
  • "AutoMinorVersionUpgrade": A value that indicates whether minor engine upgrades are applied automatically to the replication instance during the maintenance window. This parameter defaults to true. Default: true
  • "AvailabilityZone": 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.
  • "DnsNameServers": A list of custom DNS name servers supported for the replication instance to access your on-premise source or target database. This list overrides the default name servers supported by the replication instance. You can specify a comma-separated list of internet addresses for up to four on-premise DNS name servers. For example: "1.1.1.1,2.2.2.2,3.3.3.3,4.4.4.4"
  • "EngineVersion": The engine version number of the replication instance. If an engine version number is not specified when a replication instance is created, the default is the latest engine version available.
  • "KmsKeyId": An KMS key identifier that is used to encrypt the data on the replication instance. If you don't specify a value for the KmsKeyId parameter, then 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.
  • "MultiAZ": Specifies whether the replication instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if the Multi-AZ parameter is set to true.
  • "NetworkType": The type of IP address protocol used by a replication instance, such as IPv4 only or Dual-stack that supports both IPv4 and IPv6 addressing. IPv6 only is not yet supported.
  • "PreferredMaintenanceWindow": The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). Format: ddd:hh24:mi-ddd:hh24:mi Default: A 30-minute window selected at random from an 8-hour block of time per Amazon Web Services Region, occurring on a random day of the week. Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun Constraints: Minimum 30-minute window.
  • "PubliclyAccessible": Specifies the accessibility options for the replication instance. A value of true represents an instance with a public IP address. A value of false represents an instance with a private IP address. The default value is true.
  • "ReplicationSubnetGroupIdentifier": A subnet group to associate with the replication instance.
  • "ResourceIdentifier": A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, DMS generates a default identifier value for the end of EndpointArn.
  • "Tags": One or more tags to be assigned to the replication instance.
  • "VpcSecurityGroupIds": Specifies the VPC security group to be used with the replication instance. The VPC security group must work with the VPC containing the replication instance.
Main.Database_Migration_Service.create_replication_subnet_groupMethod
create_replication_subnet_group(replication_subnet_group_description, replication_subnet_group_identifier, subnet_ids)
create_replication_subnet_group(replication_subnet_group_description, replication_subnet_group_identifier, subnet_ids, params::Dict{String,<:Any})

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.

Arguments

  • replication_subnet_group_description: The description for the subnet group.
  • replication_subnet_group_identifier: The name for the replication subnet group. This value is stored as a lowercase string. Constraints: Must contain no more than 255 alphanumeric characters, periods, spaces, underscores, or hyphens. Must not be "default". Example: mySubnetgroup
  • subnet_ids: Two or more subnet IDs to be assigned to the subnet group.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Tags": One or more tags to be assigned to the subnet group.
Main.Database_Migration_Service.create_replication_taskMethod
create_replication_task(migration_type, replication_instance_arn, replication_task_identifier, source_endpoint_arn, table_mappings, target_endpoint_arn)
create_replication_task(migration_type, replication_instance_arn, replication_task_identifier, source_endpoint_arn, table_mappings, target_endpoint_arn, params::Dict{String,<:Any})

Creates a replication task using the specified parameters.

Arguments

  • migration_type: The migration type. Valid values: full-load | cdc | full-load-and-cdc
  • replication_instance_arn: The Amazon Resource Name (ARN) of a replication instance.
  • replication_task_identifier: An identifier for the replication task. 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.
  • source_endpoint_arn: An Amazon Resource Name (ARN) that uniquely identifies the source endpoint.
  • table_mappings: The table mappings for the task, in JSON format. For more information, see Using Table Mapping to Specify Task Settings in the Database Migration Service User Guide.
  • target_endpoint_arn: An Amazon Resource Name (ARN) that uniquely identifies the target endpoint.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "CdcStartPosition": 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. Date Example: –cdc-start-position “2018-03-08T12:12:12” Checkpoint Example: –cdc-start-position "checkpoint:V1#27#mysql-bin-changelog.157832:1975:-1:2002:677883278264080:mysql-bin-changel og.157832:1876#0#0#*#0#93" LSN Example: –cdc-start-position “mysql-bin-changelog.000024:373” When you use this task setting with a source PostgreSQL database, a logical replication slot should already be created and associated with the source endpoint. You can verify this by setting the slotName extra connection attribute to the name of this logical replication slot. For more information, see Extra Connection Attributes When Using PostgreSQL as a Source for DMS.
  • "CdcStartTime": 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. Timestamp Example: –cdc-start-time “2018-03-08T12:12:12”
  • "CdcStopPosition": Indicates when you want a change data capture (CDC) operation to stop. The value can be either server time or commit time. Server time example: –cdc-stop-position “servertime:2018-02-09T12:12:12” Commit time example: –cdc-stop-position “committime:2018-02-09T12:12:12“
  • "ReplicationTaskSettings": Overall settings for the task, in JSON format. For more information, see Specifying Task Settings for Database Migration Service Tasks in the Database Migration Service User Guide.
  • "ResourceIdentifier": A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, DMS generates a default identifier value for the end of EndpointArn.
  • "Tags": One or more tags to be assigned to the replication task.
  • "TaskData": Supplemental information that the task requires to migrate the data for certain source and target endpoints. For more information, see Specifying Supplemental Data for Task Settings in the Database Migration Service User Guide.
Main.Database_Migration_Service.delete_certificateMethod
delete_certificate(certificate_arn)
delete_certificate(certificate_arn, params::Dict{String,<:Any})

Deletes the specified certificate.

Arguments

  • certificate_arn: The Amazon Resource Name (ARN) of the certificate.
Main.Database_Migration_Service.delete_connectionMethod
delete_connection(endpoint_arn, replication_instance_arn)
delete_connection(endpoint_arn, replication_instance_arn, params::Dict{String,<:Any})

Deletes the connection between a replication instance and an endpoint.

Arguments

  • endpoint_arn: The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
  • replication_instance_arn: The Amazon Resource Name (ARN) of the replication instance.
Main.Database_Migration_Service.delete_data_providerMethod
delete_data_provider(data_provider_identifier)
delete_data_provider(data_provider_identifier, params::Dict{String,<:Any})

Deletes the specified data provider. All migration projects associated with the data provider must be deleted or modified before you can delete the data provider.

Arguments

  • data_provider_identifier: The identifier of the data provider to delete.
Main.Database_Migration_Service.delete_endpointMethod
delete_endpoint(endpoint_arn)
delete_endpoint(endpoint_arn, params::Dict{String,<:Any})

Deletes the specified endpoint. All tasks associated with the endpoint must be deleted before you can delete the endpoint.

Arguments

  • endpoint_arn: The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
Main.Database_Migration_Service.delete_event_subscriptionMethod
delete_event_subscription(subscription_name)
delete_event_subscription(subscription_name, params::Dict{String,<:Any})

Deletes an DMS event subscription.

Arguments

  • subscription_name: The name of the DMS event notification subscription to be deleted.
Main.Database_Migration_Service.delete_fleet_advisor_collectorMethod
delete_fleet_advisor_collector(collector_referenced_id)
delete_fleet_advisor_collector(collector_referenced_id, params::Dict{String,<:Any})

Deletes the specified Fleet Advisor collector.

Arguments

  • collector_referenced_id: The reference ID of the Fleet Advisor collector to delete.
Main.Database_Migration_Service.delete_fleet_advisor_databasesMethod
delete_fleet_advisor_databases(database_ids)
delete_fleet_advisor_databases(database_ids, params::Dict{String,<:Any})

Deletes the specified Fleet Advisor collector databases.

Arguments

  • database_ids: The IDs of the Fleet Advisor collector databases to delete.
Main.Database_Migration_Service.delete_instance_profileMethod
delete_instance_profile(instance_profile_identifier)
delete_instance_profile(instance_profile_identifier, params::Dict{String,<:Any})

Deletes the specified instance profile. All migration projects associated with the instance profile must be deleted or modified before you can delete the instance profile.

Arguments

  • instance_profile_identifier: The identifier of the instance profile to delete.
Main.Database_Migration_Service.delete_migration_projectMethod
delete_migration_project(migration_project_identifier)
delete_migration_project(migration_project_identifier, params::Dict{String,<:Any})

Deletes the specified migration project. The migration project must be closed before you can delete it.

Arguments

  • migration_project_identifier: The name or Amazon Resource Name (ARN) of the migration project to delete.
Main.Database_Migration_Service.delete_replication_configMethod
delete_replication_config(replication_config_arn)
delete_replication_config(replication_config_arn, params::Dict{String,<:Any})

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.

Arguments

  • replication_config_arn: The replication config to delete.
Main.Database_Migration_Service.delete_replication_instanceMethod
delete_replication_instance(replication_instance_arn)
delete_replication_instance(replication_instance_arn, params::Dict{String,<:Any})

Deletes the specified replication instance. You must delete any migration tasks that are associated with the replication instance before you can delete it.

Arguments

  • replication_instance_arn: The Amazon Resource Name (ARN) of the replication instance to be deleted.
Main.Database_Migration_Service.delete_replication_subnet_groupMethod
delete_replication_subnet_group(replication_subnet_group_identifier)
delete_replication_subnet_group(replication_subnet_group_identifier, params::Dict{String,<:Any})

Deletes a subnet group.

Arguments

  • replication_subnet_group_identifier: The subnet group name of the replication instance.
Main.Database_Migration_Service.delete_replication_taskMethod
delete_replication_task(replication_task_arn)
delete_replication_task(replication_task_arn, params::Dict{String,<:Any})

Deletes the specified replication task.

Arguments

  • replication_task_arn: The Amazon Resource Name (ARN) of the replication task to be deleted.
Main.Database_Migration_Service.delete_replication_task_assessment_runMethod
delete_replication_task_assessment_run(replication_task_assessment_run_arn)
delete_replication_task_assessment_run(replication_task_assessment_run_arn, params::Dict{String,<:Any})

Deletes the record of a single premigration assessment run. This operation removes all metadata that DMS maintains about this assessment run. However, the operation leaves untouched all information about this assessment run that is stored in your Amazon S3 bucket.

Arguments

  • replication_task_assessment_run_arn: Amazon Resource Name (ARN) of the premigration assessment run to be deleted.
Main.Database_Migration_Service.describe_account_attributesMethod
describe_account_attributes()
describe_account_attributes(params::Dict{String,<:Any})

Lists all of the DMS attributes for a customer account. These attributes include DMS quotas for the account and a unique account identifier in a particular DMS region. DMS quotas include a list of resource quotas supported by the account, such as the number of replication instances allowed. The description for each resource quota, includes the quota name, current usage toward that quota, and the quota's maximum value. DMS uses the unique account identifier to name each artifact used by DMS in the given region. This command does not take any parameters.

Main.Database_Migration_Service.describe_applicable_individual_assessmentsMethod
describe_applicable_individual_assessments()
describe_applicable_individual_assessments(params::Dict{String,<:Any})

Provides a list of individual assessments that you can specify for a new premigration assessment run, given one or more parameters. If you specify an existing migration task, this operation provides the default individual assessments you can specify for that task. Otherwise, the specified parameters model elements of a possible migration task on which to base a premigration assessment run. To use these migration task modeling parameters, you must specify an existing replication instance, a source database engine, a target database engine, and a migration type. This combination of parameters potentially limits the default individual assessments available for an assessment run created for a corresponding migration task. If you specify no parameters, this operation provides a list of all possible individual assessments that you can specify for an assessment run. If you specify any one of the task modeling parameters, you must specify all of them or the operation cannot provide a list of individual assessments. The only parameter that you can specify alone is for an existing migration task. The specified task definition then determines the default list of individual assessments that you can specify in an assessment run for the task.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Marker": 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.
  • "MaxRecords": 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.
  • "MigrationType": Name of the migration type that each provided individual assessment must support.
  • "ReplicationInstanceArn": ARN of a replication instance on which you want to base the default list of individual assessments.
  • "ReplicationTaskArn": Amazon Resource Name (ARN) of a migration task on which you want to base the default list of individual assessments.
  • "SourceEngineName": Name of a database engine that the specified replication instance supports as a source.
  • "TargetEngineName": Name of a database engine that the specified replication instance supports as a target.
Main.Database_Migration_Service.describe_certificatesMethod
describe_certificates()
describe_certificates(params::Dict{String,<:Any})

Provides a description of the certificate.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the certificates described in the form of key-value pairs. Valid values are certificate-arn and certificate-id.
  • "Marker": 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.
  • "MaxRecords": 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. Default: 10
Main.Database_Migration_Service.describe_connectionsMethod
describe_connections()
describe_connections(params::Dict{String,<:Any})

Describes the status of the connections that have been made between the replication instance and an endpoint. Connections are created when you test an endpoint.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": The filters applied to the connection. Valid filter names: endpoint-arn | replication-instance-arn
  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
Main.Database_Migration_Service.describe_conversion_configurationMethod
describe_conversion_configuration(migration_project_identifier)
describe_conversion_configuration(migration_project_identifier, params::Dict{String,<:Any})

Returns configuration parameters for a schema conversion project.

Arguments

  • migration_project_identifier: The name or Amazon Resource Name (ARN) for the schema conversion project to describe.
Main.Database_Migration_Service.describe_data_providersMethod
describe_data_providers()
describe_data_providers(params::Dict{String,<:Any})

Returns a paginated list of data providers for your account in the current region.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the data providers described in the form of key-value pairs. Valid filter names: data-provider-identifier
  • "Marker": Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
  • "MaxRecords": The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
Main.Database_Migration_Service.describe_endpoint_settingsMethod
describe_endpoint_settings(engine_name)
describe_endpoint_settings(engine_name, params::Dict{String,<:Any})

Returns information about the possible endpoint settings available when you create an endpoint for a specific database engine.

Arguments

  • engine_name: The database engine used for your source or target endpoint.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Marker": 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.
  • "MaxRecords": 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.
Main.Database_Migration_Service.describe_endpoint_typesMethod
describe_endpoint_types()
describe_endpoint_types(params::Dict{String,<:Any})

Returns information about the type of endpoints available.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the endpoint types. Valid filter names: engine-name | endpoint-type
  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
Main.Database_Migration_Service.describe_endpointsMethod
describe_endpoints()
describe_endpoints(params::Dict{String,<:Any})

Returns information about the endpoints for your account in the current region.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the endpoints. Valid filter names: endpoint-arn | endpoint-type | endpoint-id | engine-name
  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
Main.Database_Migration_Service.describe_engine_versionsMethod
describe_engine_versions()
describe_engine_versions(params::Dict{String,<:Any})

Returns information about the replication instance versions used in the project.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Marker": 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.
  • "MaxRecords": 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.
Main.Database_Migration_Service.describe_event_categoriesMethod
describe_event_categories()
describe_event_categories(params::Dict{String,<:Any})

Lists categories for all event source types, or, if specified, for a specified source type. You can see a list of the event categories and source types in Working with Events and Notifications in the Database Migration Service User Guide.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the event categories.
  • "SourceType": The type of DMS resource that generates events. Valid values: replication-instance | replication-task
Main.Database_Migration_Service.describe_event_subscriptionsMethod
describe_event_subscriptions()
describe_event_subscriptions(params::Dict{String,<:Any})

Lists all the event subscriptions for a customer account. The description of a subscription includes SubscriptionName, SNSTopicARN, CustomerID, SourceType, SourceID, CreationTime, and Status. If you specify SubscriptionName, this action lists the description for that subscription.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to event subscriptions. Valid filter names: event-subscription-arn | event-subscription-id
  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
  • "SubscriptionName": The name of the DMS event subscription to be described.
Main.Database_Migration_Service.describe_eventsMethod
describe_events()
describe_events(params::Dict{String,<:Any})

Lists events for a given source identifier and source type. You can also specify a start and end time. For more information on DMS events, see Working with Events and Notifications in the Database Migration Service User Guide.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Duration": The duration of the events to be listed.
  • "EndTime": The end time for the events to be listed.
  • "EventCategories": A list of event categories for the source type that you've chosen.
  • "Filters": Filters applied to events. The only valid filter is replication-instance-id.
  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
  • "SourceIdentifier": The identifier of an event source.
  • "SourceType": The type of DMS resource that generates events. Valid values: replication-instance | replication-task
  • "StartTime": The start time for the events to be listed.
Main.Database_Migration_Service.describe_extension_pack_associationsMethod
describe_extension_pack_associations(migration_project_identifier)
describe_extension_pack_associations(migration_project_identifier, params::Dict{String,<:Any})

Returns a paginated list of extension pack associations for the specified migration project. An extension pack is an add-on module that emulates functions present in a source database that are required when converting objects to the target database.

Arguments

  • migration_project_identifier: The name or Amazon Resource Name (ARN) for the migration project.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the extension pack associations described in the form of key-value pairs.
  • "Marker": Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
  • "MaxRecords": The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
Main.Database_Migration_Service.describe_fleet_advisor_collectorsMethod
describe_fleet_advisor_collectors()
describe_fleet_advisor_collectors(params::Dict{String,<:Any})

Returns a list of the Fleet Advisor collectors in your account.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": If you specify any of the following filters, the output includes information for only those collectors that meet the filter criteria: collector-referenced-id – The ID of the collector agent, for example d4610ac5-e323-4ad9-bc50-eaf7249dfe9d. collector-name – The name of the collector agent. An example is: describe-fleet-advisor-collectors –filter Name="collector-referenced-id",Values="d4610ac5-e323-4ad9-bc50-eaf7249dfe9d"
  • "MaxRecords": Sets the maximum number of records returned in the response.
  • "NextToken": If NextToken is returned by a previous response, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
Main.Database_Migration_Service.describe_fleet_advisor_databasesMethod
describe_fleet_advisor_databases()
describe_fleet_advisor_databases(params::Dict{String,<:Any})

Returns a list of Fleet Advisor databases in your account.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": If you specify any of the following filters, the output includes information for only those databases that meet the filter criteria: database-id – The ID of the database. database-name – The name of the database. database-engine – The name of the database engine. server-ip-address – The IP address of the database server. database-ip-address – The IP address of the database. collector-name – The name of the associated Fleet Advisor collector. An example is: describe-fleet-advisor-databases –filter Name="database-id",Values="45"
  • "MaxRecords": Sets the maximum number of records returned in the response.
  • "NextToken": If NextToken is returned by a previous response, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
Main.Database_Migration_Service.describe_fleet_advisor_lsa_analysisMethod
describe_fleet_advisor_lsa_analysis()
describe_fleet_advisor_lsa_analysis(params::Dict{String,<:Any})

Provides descriptions of large-scale assessment (LSA) analyses produced by your Fleet Advisor collectors.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "MaxRecords": Sets the maximum number of records returned in the response.
  • "NextToken": If NextToken is returned by a previous response, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
Main.Database_Migration_Service.describe_fleet_advisor_schema_object_summaryMethod
describe_fleet_advisor_schema_object_summary()
describe_fleet_advisor_schema_object_summary(params::Dict{String,<:Any})

Provides descriptions of the schemas discovered by your Fleet Advisor collectors.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": If you specify any of the following filters, the output includes information for only those schema objects that meet the filter criteria: schema-id – The ID of the schema, for example d4610ac5-e323-4ad9-bc50-eaf7249dfe9d. Example: describe-fleet-advisor-schema-object-summary –filter Name="schema-id",Values="50"
  • "MaxRecords": Sets the maximum number of records returned in the response.
  • "NextToken": If NextToken is returned by a previous response, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
Main.Database_Migration_Service.describe_fleet_advisor_schemasMethod
describe_fleet_advisor_schemas()
describe_fleet_advisor_schemas(params::Dict{String,<:Any})

Returns a list of schemas detected by Fleet Advisor Collectors in your account.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": If you specify any of the following filters, the output includes information for only those schemas that meet the filter criteria: complexity – The schema's complexity, for example Simple. database-id – The ID of the schema's database. database-ip-address – The IP address of the schema's database. database-name – The name of the schema's database. database-engine – The name of the schema database's engine. original-schema-name – The name of the schema's database's main schema. schema-id – The ID of the schema, for example 15. schema-name – The name of the schema. server-ip-address – The IP address of the schema database's server. An example is: describe-fleet-advisor-schemas –filter Name="schema-id",Values="50"
  • "MaxRecords": Sets the maximum number of records returned in the response.
  • "NextToken": If NextToken is returned by a previous response, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
Main.Database_Migration_Service.describe_instance_profilesMethod
describe_instance_profiles()
describe_instance_profiles(params::Dict{String,<:Any})

Returns a paginated list of instance profiles for your account in the current region.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the instance profiles described in the form of key-value pairs.
  • "Marker": Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
  • "MaxRecords": The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
Main.Database_Migration_Service.describe_metadata_model_assessmentsMethod
describe_metadata_model_assessments(migration_project_identifier)
describe_metadata_model_assessments(migration_project_identifier, params::Dict{String,<:Any})

Returns a paginated list of metadata model assessments for your account in the current region.

Arguments

  • migration_project_identifier: The name or Amazon Resource Name (ARN) of the migration project.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the metadata model assessments described in the form of key-value pairs.
  • "Marker": Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
  • "MaxRecords": The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
Main.Database_Migration_Service.describe_metadata_model_conversionsMethod
describe_metadata_model_conversions(migration_project_identifier)
describe_metadata_model_conversions(migration_project_identifier, params::Dict{String,<:Any})

Returns a paginated list of metadata model conversions for a migration project.

Arguments

  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the metadata model conversions described in the form of key-value pairs.
  • "Marker": Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
  • "MaxRecords": The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
Main.Database_Migration_Service.describe_metadata_model_exports_as_scriptMethod
describe_metadata_model_exports_as_script(migration_project_identifier)
describe_metadata_model_exports_as_script(migration_project_identifier, params::Dict{String,<:Any})

Returns a paginated list of metadata model exports.

Arguments

  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the metadata model exports described in the form of key-value pairs.
  • "Marker": Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
  • "MaxRecords": The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
Main.Database_Migration_Service.describe_metadata_model_exports_to_targetMethod
describe_metadata_model_exports_to_target(migration_project_identifier)
describe_metadata_model_exports_to_target(migration_project_identifier, params::Dict{String,<:Any})

Returns a paginated list of metadata model exports.

Arguments

  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the metadata model exports described in the form of key-value pairs.
  • "Marker": Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
  • "MaxRecords": The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
Main.Database_Migration_Service.describe_metadata_model_importsMethod
describe_metadata_model_imports(migration_project_identifier)
describe_metadata_model_imports(migration_project_identifier, params::Dict{String,<:Any})

Returns a paginated list of metadata model imports.

Arguments

  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the metadata model imports described in the form of key-value pairs.
  • "Marker": Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
  • "MaxRecords": A paginated list of metadata model imports.
Main.Database_Migration_Service.describe_migration_projectsMethod
describe_migration_projects()
describe_migration_projects(params::Dict{String,<:Any})

Returns a paginated list of migration projects for your account in the current region.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the migration projects described in the form of key-value pairs.
  • "Marker": Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
  • "MaxRecords": The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
Main.Database_Migration_Service.describe_orderable_replication_instancesMethod
describe_orderable_replication_instances()
describe_orderable_replication_instances(params::Dict{String,<:Any})

Returns information about the replication instance types that can be created in the specified region.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
Main.Database_Migration_Service.describe_pending_maintenance_actionsMethod
describe_pending_maintenance_actions()
describe_pending_maintenance_actions(params::Dict{String,<:Any})

For internal use only

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters":
  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
  • "ReplicationInstanceArn": The Amazon Resource Name (ARN) of the replication instance.
Main.Database_Migration_Service.describe_recommendation_limitationsMethod
describe_recommendation_limitations()
describe_recommendation_limitations(params::Dict{String,<:Any})

Returns a paginated list of limitations for recommendations of target Amazon Web Services engines.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the limitations described in the form of key-value pairs.
  • "MaxRecords": The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, Fleet Advisor includes a pagination token in the response so that you can retrieve the remaining results.
  • "NextToken": Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If NextToken is returned by a previous response, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
Main.Database_Migration_Service.describe_recommendationsMethod
describe_recommendations()
describe_recommendations(params::Dict{String,<:Any})

Returns a paginated list of target engine recommendations for your source databases.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the target engine recommendations described in the form of key-value pairs.
  • "MaxRecords": The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, Fleet Advisor includes a pagination token in the response so that you can retrieve the remaining results.
  • "NextToken": Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If NextToken is returned by a previous response, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
Main.Database_Migration_Service.describe_refresh_schemas_statusMethod
describe_refresh_schemas_status(endpoint_arn)
describe_refresh_schemas_status(endpoint_arn, params::Dict{String,<:Any})

Returns the status of the RefreshSchemas operation.

Arguments

  • endpoint_arn: The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
Main.Database_Migration_Service.describe_replication_configsMethod
describe_replication_configs()
describe_replication_configs(params::Dict{String,<:Any})

Returns one or more existing DMS Serverless replication configurations as a list of structures.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the replication configs.
  • "Marker": 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.
  • "MaxRecords": 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.
Main.Database_Migration_Service.describe_replication_instance_task_logsMethod
describe_replication_instance_task_logs(replication_instance_arn)
describe_replication_instance_task_logs(replication_instance_arn, params::Dict{String,<:Any})

Returns information about the task logs for the specified task.

Arguments

  • replication_instance_arn: The Amazon Resource Name (ARN) of the replication instance.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
Main.Database_Migration_Service.describe_replication_instancesMethod
describe_replication_instances()
describe_replication_instances(params::Dict{String,<:Any})

Returns information about replication instances for your account in the current region.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to replication instances. Valid filter names: replication-instance-arn | replication-instance-id | replication-instance-class | engine-version
  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
Main.Database_Migration_Service.describe_replication_subnet_groupsMethod
describe_replication_subnet_groups()
describe_replication_subnet_groups(params::Dict{String,<:Any})

Returns information about the replication subnet groups.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to replication subnet groups. Valid filter names: replication-subnet-group-id
  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
Main.Database_Migration_Service.describe_replication_table_statisticsMethod
describe_replication_table_statistics(replication_config_arn)
describe_replication_table_statistics(replication_config_arn, params::Dict{String,<:Any})

Returns table and schema statistics for one or more provisioned replications that use a given DMS Serverless replication configuration.

Arguments

  • replication_config_arn: The replication config to describe.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the replication table statistics.
  • "Marker": 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.
  • "MaxRecords": 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.
Main.Database_Migration_Service.describe_replication_task_assessment_resultsMethod
describe_replication_task_assessment_results()
describe_replication_task_assessment_results(params::Dict{String,<:Any})

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.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
  • "ReplicationTaskArn": 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.
Main.Database_Migration_Service.describe_replication_task_assessment_runsMethod
describe_replication_task_assessment_runs()
describe_replication_task_assessment_runs(params::Dict{String,<:Any})

Returns a paginated list of premigration assessment runs based on filter settings. These filter settings can specify a combination of premigration assessment runs, migration tasks, replication instances, and assessment run status values. This operation doesn't return information about individual assessments. For this information, see the DescribeReplicationTaskIndividualAssessments operation.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the premigration assessment runs described in the form of key-value pairs. Valid filter names: replication-task-assessment-run-arn, replication-task-arn, replication-instance-arn, status
  • "Marker": 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.
  • "MaxRecords": 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.
Main.Database_Migration_Service.describe_replication_task_individual_assessmentsMethod
describe_replication_task_individual_assessments()
describe_replication_task_individual_assessments(params::Dict{String,<:Any})

Returns a paginated list of individual assessments based on filter settings. These filter settings can specify a combination of premigration assessment runs, migration tasks, and assessment status values.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the individual assessments described in the form of key-value pairs. Valid filter names: replication-task-assessment-run-arn, replication-task-arn, status
  • "Marker": 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.
  • "MaxRecords": 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.
Main.Database_Migration_Service.describe_replication_tasksMethod
describe_replication_tasks()
describe_replication_tasks(params::Dict{String,<:Any})

Returns information about replication tasks for your account in the current region.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to replication tasks. Valid filter names: replication-task-arn | replication-task-id | migration-type | endpoint-arn | replication-instance-arn
  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
  • "WithoutSettings": An option to set to avoid returning information about settings. Use this to reduce overhead when setting information is too large. To use this option, choose true; otherwise, choose false (the default).
Main.Database_Migration_Service.describe_replicationsMethod
describe_replications()
describe_replications(params::Dict{String,<:Any})

Provides details on replication progress by returning status information for one or more provisioned DMS Serverless replications.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to the replications.
  • "Marker": 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.
  • "MaxRecords": 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.
Main.Database_Migration_Service.describe_schemasMethod
describe_schemas(endpoint_arn)
describe_schemas(endpoint_arn, params::Dict{String,<:Any})

Returns information about the schema for the specified endpoint.

Arguments

  • endpoint_arn: The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 100.
Main.Database_Migration_Service.describe_table_statisticsMethod
describe_table_statistics(replication_task_arn)
describe_table_statistics(replication_task_arn, params::Dict{String,<:Any})

Returns table statistics on the database migration task, including table name, rows inserted, rows updated, and rows deleted. Note that the "last updated" column the DMS console only indicates the time that DMS last updated the table statistics record for a table. It does not indicate the time of the last update to the table.

Arguments

  • replication_task_arn: The Amazon Resource Name (ARN) of the replication task.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Filters": Filters applied to table statistics. Valid filter names: schema-name | table-name | table-state A combination of filters creates an AND condition where each record matches all specified filters.
  • "Marker": 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.
  • "MaxRecords": 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. Default: 100 Constraints: Minimum 20, maximum 500.
Main.Database_Migration_Service.export_metadata_model_assessmentMethod
export_metadata_model_assessment(migration_project_identifier, selection_rules)
export_metadata_model_assessment(migration_project_identifier, selection_rules, params::Dict{String,<:Any})

Saves a copy of a database migration assessment report to your Amazon S3 bucket. DMS can save your assessment report as a comma-separated value (CSV) or a PDF file.

Arguments

  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).
  • selection_rules: A value that specifies the database objects to assess.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "AssessmentReportTypes": The file format of the assessment file.
  • "FileName": The name of the assessment file to create in your Amazon S3 bucket.
Main.Database_Migration_Service.import_certificateMethod
import_certificate(certificate_identifier)
import_certificate(certificate_identifier, params::Dict{String,<:Any})

Uploads the specified certificate.

Arguments

  • certificate_identifier: A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "CertificatePem": The contents of a .pem file, which contains an X.509 certificate.
  • "CertificateWallet": The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso file using the fileb:// prefix. You can't provide the certificate inline. Example: filebase64("{path.root}/rds-ca-2019-root.sso")
  • "Tags": The tags associated with the certificate.
Main.Database_Migration_Service.list_tags_for_resourceMethod
list_tags_for_resource()
list_tags_for_resource(params::Dict{String,<:Any})

Lists all metadata tags attached to an DMS resource, including replication instance, endpoint, subnet group, and migration task. For more information, see Tag data type description.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "ResourceArn": The Amazon Resource Name (ARN) string that uniquely identifies the DMS resource to list tags for. This returns a list of keys (names of tags) created for the resource and their associated tag values.
  • "ResourceArnList": List of ARNs that identify multiple DMS resources that you want to list tags for. This returns a list of keys (tag names) and their associated tag values. It also returns each tag's associated ResourceArn value, which is the ARN of the resource for which each listed tag is created.
Main.Database_Migration_Service.modify_conversion_configurationMethod
modify_conversion_configuration(conversion_configuration, migration_project_identifier)
modify_conversion_configuration(conversion_configuration, migration_project_identifier, params::Dict{String,<:Any})

Modifies the specified schema conversion configuration using the provided parameters.

Arguments

  • conversion_configuration: The new conversion configuration.
  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).
Main.Database_Migration_Service.modify_data_providerMethod
modify_data_provider(data_provider_identifier)
modify_data_provider(data_provider_identifier, params::Dict{String,<:Any})

Modifies the specified data provider using the provided settings. You must remove the data provider from all migration projects before you can modify it.

Arguments

  • data_provider_identifier: The identifier of the data provider. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "DataProviderName": The name of the data provider.
  • "Description": A user-friendly description of the data provider.
  • "Engine": The type of database engine for the data provider. Valid values include "aurora", "aurora-postgresql", "mysql", "oracle", "postgres", "sqlserver", redshift, mariadb, mongodb, and docdb. A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
  • "ExactSettings": If this attribute is Y, the current call to ModifyDataProvider replaces all existing data provider settings with the exact settings that you specify in this call. If this attribute is N, the current call to ModifyDataProvider does two things: It replaces any data provider settings that already exist with new values, for settings with the same names. It creates new data provider settings that you specify in the call, for settings with different names.
  • "Settings": The settings in JSON format for a data provider.
Main.Database_Migration_Service.modify_endpointMethod
modify_endpoint(endpoint_arn)
modify_endpoint(endpoint_arn, params::Dict{String,<:Any})

Modifies the specified endpoint. For a MySQL source or target endpoint, don't explicitly specify the database using the DatabaseName request parameter on the ModifyEndpoint API call. Specifying DatabaseName when you modify a MySQL endpoint replicates all the task tables to this single database. For MySQL endpoints, you specify the database only when you specify the schema in the table-mapping rules of the DMS task.

Arguments

  • endpoint_arn: The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "CertificateArn": The Amazon Resource Name (ARN) of the certificate used for SSL connection.
  • "DatabaseName": The name of the endpoint database. For a MySQL source or target endpoint, do not specify DatabaseName.
  • "DmsTransferSettings": The settings in JSON format for the DMS transfer type of source endpoint. Attributes include the following: serviceAccessRoleArn - The Amazon Resource Name (ARN) used by the service access IAM role. The role must allow the iam:PassRole action. BucketName - The name of the S3 bucket to use. Shorthand syntax for these settings is as follows: ServiceAccessRoleArn=string ,BucketName=string JSON syntax for these settings is as follows: { "ServiceAccessRoleArn": "string", "BucketName": "string"}
  • "DocDbSettings": Settings in JSON format for the source DocumentDB endpoint. For more information about the available settings, see the configuration properties section in Using DocumentDB as a Target for Database Migration Service in the Database Migration Service User Guide.
  • "DynamoDbSettings": Settings in JSON format for the target Amazon DynamoDB endpoint. For information about other available settings, see Using Object Mapping to Migrate Data to DynamoDB in the Database Migration Service User Guide.
  • "ElasticsearchSettings": Settings in JSON format for the target OpenSearch endpoint. For more information about the available settings, see Extra Connection Attributes When Using OpenSearch as a Target for DMS in the Database Migration Service User Guide.
  • "EndpointIdentifier": The database endpoint identifier. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
  • "EndpointType": The type of endpoint. Valid values are source and target.
  • "EngineName": The database engine name. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "db2-zos", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", "sqlserver", "neptune", and "babelfish".
  • "ExactSettings": If this attribute is Y, the current call to ModifyEndpoint replaces all existing endpoint settings with the exact settings that you specify in this call. If this attribute is N, the current call to ModifyEndpoint does two things: It replaces any endpoint settings that already exist with new values, for settings with the same names. It creates new endpoint settings that you specify in the call, for settings with different names. For example, if you call create-endpoint ... –endpoint-settings '{"a":1}' ..., the endpoint has the following endpoint settings: '{"a":1}'. If you then call modify-endpoint ... –endpoint-settings '{"b":2}' ... for the same endpoint, the endpoint has the following settings: '{"a":1,"b":2}'. However, suppose that you follow this with a call to modify-endpoint ... –endpoint-settings '{"b":2}' –exact-settings ... for that same endpoint again. Then the endpoint has the following settings: '{"b":2}'. All existing settings are replaced with the exact settings that you specify.
  • "ExternalTableDefinition": The external table definition.
  • "ExtraConnectionAttributes": Additional attributes associated with the connection. To reset this parameter, pass the empty string ("") as an argument.
  • "GcpMySQLSettings": Settings in JSON format for the source GCP MySQL endpoint.
  • "IBMDb2Settings": Settings in JSON format for the source IBM Db2 LUW endpoint. For information about other available settings, see Extra connection attributes when using Db2 LUW as a source for DMS in the Database Migration Service User Guide.
  • "KafkaSettings": Settings in JSON format for the target Apache Kafka endpoint. For more information about the available settings, see Using object mapping to migrate data to a Kafka topic in the Database Migration Service User Guide.
  • "KinesisSettings": Settings in JSON format for the target endpoint for Amazon Kinesis Data Streams. For more information about the available settings, see Using object mapping to migrate data to a Kinesis data stream in the Database Migration Service User Guide.
  • "MicrosoftSQLServerSettings": Settings in JSON format for the source and target Microsoft SQL Server endpoint. For information about other available settings, see Extra connection attributes when using SQL Server as a source for DMS and Extra connection attributes when using SQL Server as a target for DMS in the Database Migration Service User Guide.
  • "MongoDbSettings": Settings in JSON format for the source MongoDB endpoint. For more information about the available settings, see the configuration properties section in Endpoint configuration settings when using MongoDB as a source for Database Migration Service in the Database Migration Service User Guide.
  • "MySQLSettings": Settings in JSON format for the source and target MySQL endpoint. For information about other available settings, see Extra connection attributes when using MySQL as a source for DMS and Extra connection attributes when using a MySQL-compatible database as a target for DMS in the Database Migration Service User Guide.
  • "NeptuneSettings": Settings in JSON format for the target Amazon Neptune endpoint. For more information about the available settings, see Specifying graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a target in the Database Migration Service User Guide.
  • "OracleSettings": Settings in JSON format for the source and target Oracle endpoint. For information about other available settings, see Extra connection attributes when using Oracle as a source for DMS and Extra connection attributes when using Oracle as a target for DMS in the Database Migration Service User Guide.
  • "Password": The password to be used to login to the endpoint database.
  • "Port": The port used by the endpoint database.
  • "PostgreSQLSettings": Settings in JSON format for the source and target PostgreSQL endpoint. For information about other available settings, see Extra connection attributes when using PostgreSQL as a source for DMS and Extra connection attributes when using PostgreSQL as a target for DMS in the Database Migration Service User Guide.
  • "RedisSettings": Settings in JSON format for the Redis target endpoint.
  • "RedshiftSettings":
  • "S3Settings": Settings in JSON format for the target Amazon S3 endpoint. For more information about the available settings, see Extra Connection Attributes When Using Amazon S3 as a Target for DMS in the Database Migration Service User Guide.
  • "ServerName": The name of the server where the endpoint database resides.
  • "ServiceAccessRoleArn": The Amazon Resource Name (ARN) for the IAM role you want to use to modify the endpoint. The role must allow the iam:PassRole action.
  • "SslMode": The SSL mode used to connect to the endpoint. The default value is none.
  • "SybaseSettings": Settings in JSON format for the source and target SAP ASE endpoint. For information about other available settings, see Extra connection attributes when using SAP ASE as a source for DMS and Extra connection attributes when using SAP ASE as a target for DMS in the Database Migration Service User Guide.
  • "TimestreamSettings": Settings in JSON format for the target Amazon Timestream endpoint.
  • "Username": The user name to be used to login to the endpoint database.
Main.Database_Migration_Service.modify_event_subscriptionMethod
modify_event_subscription(subscription_name)
modify_event_subscription(subscription_name, params::Dict{String,<:Any})

Modifies an existing DMS event notification subscription.

Arguments

  • subscription_name: The name of the DMS event notification subscription to be modified.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Enabled": A Boolean value; set to true to activate the subscription.
  • "EventCategories": A list of event categories for a source type that you want to subscribe to. Use the DescribeEventCategories action to see a list of event categories.
  • "SnsTopicArn": The Amazon Resource Name (ARN) of the Amazon SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.
  • "SourceType": The type of DMS resource that generates the events you want to subscribe to. Valid values: replication-instance | replication-task
Main.Database_Migration_Service.modify_instance_profileMethod
modify_instance_profile(instance_profile_identifier)
modify_instance_profile(instance_profile_identifier, params::Dict{String,<:Any})

Modifies the specified instance profile using the provided parameters. All migration projects associated with the instance profile must be deleted or modified before you can modify the instance profile.

Arguments

  • instance_profile_identifier: The identifier of the instance profile. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "AvailabilityZone": The Availability Zone where the instance profile runs.
  • "Description": A user-friendly description for the instance profile.
  • "InstanceProfileName": A user-friendly name for the instance profile.
  • "KmsKeyArn": The Amazon Resource Name (ARN) of the KMS key that is used to encrypt the connection parameters for the instance profile. If you don't specify a value for the KmsKeyArn parameter, then 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.
  • "NetworkType": Specifies the network type for the instance profile. A value of IPV4 represents an instance profile with IPv4 network type and only supports IPv4 addressing. A value of IPV6 represents an instance profile with IPv6 network type and only supports IPv6 addressing. A value of DUAL represents an instance profile with dual network type that supports IPv4 and IPv6 addressing.
  • "PubliclyAccessible": Specifies the accessibility options for the instance profile. A value of true represents an instance profile with a public IP address. A value of false represents an instance profile with a private IP address. The default value is true.
  • "SubnetGroupIdentifier": A subnet group to associate with the instance profile.
  • "VpcSecurityGroups": Specifies the VPC security groups to be used with the instance profile. The VPC security group must work with the VPC containing the instance profile.
Main.Database_Migration_Service.modify_migration_projectMethod
modify_migration_project(migration_project_identifier)
modify_migration_project(migration_project_identifier, params::Dict{String,<:Any})

Modifies the specified migration project using the provided parameters. The migration project must be closed before you can modify it.

Arguments

  • migration_project_identifier: The identifier of the migration project. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Description": A user-friendly description of the migration project.
  • "InstanceProfileIdentifier": The name or Amazon Resource Name (ARN) for the instance profile.
  • "MigrationProjectName": A user-friendly name for the migration project.
  • "SchemaConversionApplicationAttributes": The schema conversion application attributes, including the Amazon S3 bucket name and Amazon S3 role ARN.
  • "SourceDataProviderDescriptors": Information about the source data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.
  • "TargetDataProviderDescriptors": Information about the target data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.
  • "TransformationRules": The settings in JSON format for migration rules. Migration rules make it possible for you to change the object names according to the rules that you specify. For example, you can change an object name to lowercase or uppercase, add or remove a prefix or suffix, or rename objects.
Main.Database_Migration_Service.modify_replication_configMethod
modify_replication_config(replication_config_arn)
modify_replication_config(replication_config_arn, params::Dict{String,<:Any})

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.

Arguments

  • replication_config_arn: The Amazon Resource Name of the replication to modify.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "ComputeConfig": Configuration parameters for provisioning an DMS Serverless replication.
  • "ReplicationConfigIdentifier": The new replication config to apply to the replication.
  • "ReplicationSettings": The settings for the replication.
  • "ReplicationType": The type of replication.
  • "SourceEndpointArn": The Amazon Resource Name (ARN) of the source endpoint for this DMS serverless replication configuration.
  • "SupplementalSettings": Additional settings for the replication.
  • "TableMappings": Table mappings specified in the replication.
  • "TargetEndpointArn": The Amazon Resource Name (ARN) of the target endpoint for this DMS serverless replication configuration.
Main.Database_Migration_Service.modify_replication_instanceMethod
modify_replication_instance(replication_instance_arn)
modify_replication_instance(replication_instance_arn, params::Dict{String,<:Any})

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.

Arguments

  • replication_instance_arn: The Amazon Resource Name (ARN) of the replication instance.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "AllocatedStorage": The amount of storage (in gigabytes) to be allocated for the replication instance.
  • "AllowMajorVersionUpgrade": Indicates that major version upgrades are allowed. Changing this parameter does not result in an outage, and the change is asynchronously applied as soon as possible. This parameter must be set to true when specifying a value for the EngineVersion parameter that is a different major version than the replication instance's current version.
  • "ApplyImmediately": Indicates whether the changes should be applied immediately or during the next maintenance window.
  • "AutoMinorVersionUpgrade": A value that indicates that minor version upgrades are applied automatically to the replication instance during the maintenance window. Changing this parameter doesn't result in an outage, except in the case described following. The change is asynchronously applied as soon as possible. An outage does result if these factors apply: This parameter is set to true during the maintenance window. A newer minor version is available. DMS has enabled automatic patching for the given engine version.
  • "EngineVersion": The engine version number of the replication instance. When modifying a major engine version of an instance, also set AllowMajorVersionUpgrade to true.
  • "MultiAZ": Specifies whether the replication instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if the Multi-AZ parameter is set to true.
  • "NetworkType": The type of IP address protocol used by a replication instance, such as IPv4 only or Dual-stack that supports both IPv4 and IPv6 addressing. IPv6 only is not yet supported.
  • "PreferredMaintenanceWindow": The weekly time range (in UTC) during which system maintenance can occur, which might result in an outage. Changing this parameter does not result in an outage, except in the following situation, and the change is asynchronously applied as soon as possible. If moving this window to the current time, there must be at least 30 minutes between the current time and end of the window to ensure pending changes are applied. Default: Uses existing setting Format: ddd:hh24:mi-ddd:hh24:mi Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun Constraints: Must be at least 30 minutes
  • "ReplicationInstanceClass": 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 Selecting the right DMS replication instance for your migration.
  • "ReplicationInstanceIdentifier": The replication instance identifier. This parameter is stored as a lowercase string.
  • "VpcSecurityGroupIds": Specifies the VPC security group to be used with the replication instance. The VPC security group must work with the VPC containing the replication instance.
Main.Database_Migration_Service.modify_replication_subnet_groupMethod
modify_replication_subnet_group(replication_subnet_group_identifier, subnet_ids)
modify_replication_subnet_group(replication_subnet_group_identifier, subnet_ids, params::Dict{String,<:Any})

Modifies the settings for the specified replication subnet group.

Arguments

  • replication_subnet_group_identifier: The name of the replication instance subnet group.
  • subnet_ids: A list of subnet IDs.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "ReplicationSubnetGroupDescription": A description for the replication instance subnet group.
Main.Database_Migration_Service.modify_replication_taskMethod
modify_replication_task(replication_task_arn)
modify_replication_task(replication_task_arn, params::Dict{String,<:Any})

Modifies the specified replication task. You can't modify the task endpoints. The task must be stopped before you can modify it. For more information about DMS tasks, see Working with Migration Tasks in the Database Migration Service User Guide.

Arguments

  • replication_task_arn: The Amazon Resource Name (ARN) of the replication task.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "CdcStartPosition": 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. Date Example: –cdc-start-position “2018-03-08T12:12:12” Checkpoint Example: –cdc-start-position "checkpoint:V1#27#mysql-bin-changelog.157832:1975:-1:2002:677883278264080:mysql-bin-changel og.157832:1876#0#0#*#0#93" LSN Example: –cdc-start-position “mysql-bin-changelog.000024:373” When you use this task setting with a source PostgreSQL database, a logical replication slot should already be created and associated with the source endpoint. You can verify this by setting the slotName extra connection attribute to the name of this logical replication slot. For more information, see Extra Connection Attributes When Using PostgreSQL as a Source for DMS.
  • "CdcStartTime": 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. Timestamp Example: –cdc-start-time “2018-03-08T12:12:12”
  • "CdcStopPosition": Indicates when you want a change data capture (CDC) operation to stop. The value can be either server time or commit time. Server time example: –cdc-stop-position “servertime:2018-02-09T12:12:12” Commit time example: –cdc-stop-position “committime:2018-02-09T12:12:12“
  • "MigrationType": The migration type. Valid values: full-load | cdc | full-load-and-cdc
  • "ReplicationTaskIdentifier": The replication task identifier. 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.
  • "ReplicationTaskSettings": JSON file that contains settings for the task, such as task metadata settings.
  • "TableMappings": When using the CLI or boto3, provide the path of the JSON file that contains the table mappings. Precede the path with file://. For example, –table-mappings file://mappingfile.json. When working with the DMS API, provide the JSON as the parameter value.
  • "TaskData": Supplemental information that the task requires to migrate the data for certain source and target endpoints. For more information, see Specifying Supplemental Data for Task Settings in the Database Migration Service User Guide.
Main.Database_Migration_Service.move_replication_taskMethod
move_replication_task(replication_task_arn, target_replication_instance_arn)
move_replication_task(replication_task_arn, target_replication_instance_arn, params::Dict{String,<:Any})

Moves a replication task from its current replication instance to a different target replication instance using the specified parameters. The target replication instance must be created with the same or later DMS version as the current replication instance.

Arguments

  • replication_task_arn: The Amazon Resource Name (ARN) of the task that you want to move.
  • target_replication_instance_arn: The ARN of the replication instance where you want to move the task to.
Main.Database_Migration_Service.reboot_replication_instanceMethod
reboot_replication_instance(replication_instance_arn)
reboot_replication_instance(replication_instance_arn, params::Dict{String,<:Any})

Reboots a replication instance. Rebooting results in a momentary outage, until the replication instance becomes available again.

Arguments

  • replication_instance_arn: The Amazon Resource Name (ARN) of the replication instance.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "ForceFailover": If this parameter is true, the reboot is conducted through a Multi-AZ failover. If the instance isn't configured for Multi-AZ, then you can't specify true. ( –force-planned-failover and –force-failover can't both be set to true.)
  • "ForcePlannedFailover": If this parameter is true, the reboot is conducted through a planned Multi-AZ failover where resources are released and cleaned up prior to conducting the failover. If the instance isn''t configured for Multi-AZ, then you can't specify true. ( –force-planned-failover and –force-failover can't both be set to true.)
Main.Database_Migration_Service.refresh_schemasMethod
refresh_schemas(endpoint_arn, replication_instance_arn)
refresh_schemas(endpoint_arn, replication_instance_arn, params::Dict{String,<:Any})

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.

Arguments

  • endpoint_arn: The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
  • replication_instance_arn: The Amazon Resource Name (ARN) of the replication instance.
Main.Database_Migration_Service.reload_replication_tablesMethod
reload_replication_tables(replication_config_arn, tables_to_reload)
reload_replication_tables(replication_config_arn, tables_to_reload, params::Dict{String,<:Any})

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.

Arguments

  • replication_config_arn: The Amazon Resource Name of the replication config for which to reload tables.
  • tables_to_reload: The list of tables to reload.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "ReloadOption": 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.
Main.Database_Migration_Service.reload_tablesMethod
reload_tables(replication_task_arn, tables_to_reload)
reload_tables(replication_task_arn, tables_to_reload, params::Dict{String,<:Any})

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.

Arguments

  • replication_task_arn: The Amazon Resource Name (ARN) of the replication task.
  • tables_to_reload: The name and schema of the table to be reloaded.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "ReloadOption": 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 task. Valid values: data-reload, validate-only Default value is data-reload.
Main.Database_Migration_Service.remove_tags_from_resourceMethod
remove_tags_from_resource(resource_arn, tag_keys)
remove_tags_from_resource(resource_arn, tag_keys, params::Dict{String,<:Any})

Removes metadata tags from an DMS resource, including replication instance, endpoint, subnet group, and migration task. For more information, see Tag data type description.

Arguments

  • resource_arn: An DMS resource from which you want to remove tag(s). The value for this parameter is an Amazon Resource Name (ARN).
  • tag_keys: The tag key (name) of the tag to be removed.
Main.Database_Migration_Service.start_extension_pack_associationMethod
start_extension_pack_association(migration_project_identifier)
start_extension_pack_association(migration_project_identifier, params::Dict{String,<:Any})

Applies the extension pack to your target database. An extension pack is an add-on module that emulates functions present in a source database that are required when converting objects to the target database.

Arguments

  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).
Main.Database_Migration_Service.start_metadata_model_assessmentMethod
start_metadata_model_assessment(migration_project_identifier, selection_rules)
start_metadata_model_assessment(migration_project_identifier, selection_rules, params::Dict{String,<:Any})

Creates a database migration assessment report by assessing the migration complexity for your source database. A database migration assessment report summarizes all of the schema conversion tasks. It also details the action items for database objects that can't be converted to the database engine of your target database instance.

Arguments

  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).
  • selection_rules: A value that specifies the database objects to assess.
Main.Database_Migration_Service.start_metadata_model_conversionMethod
start_metadata_model_conversion(migration_project_identifier, selection_rules)
start_metadata_model_conversion(migration_project_identifier, selection_rules, params::Dict{String,<:Any})

Converts your source database objects to a format compatible with the target database.

Arguments

  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).
  • selection_rules: A value that specifies the database objects to convert.
Main.Database_Migration_Service.start_metadata_model_export_as_scriptMethod
start_metadata_model_export_as_script(migration_project_identifier, origin, selection_rules)
start_metadata_model_export_as_script(migration_project_identifier, origin, selection_rules, params::Dict{String,<:Any})

Saves your converted code to a file as a SQL script, and stores this file on your Amazon S3 bucket.

Arguments

  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).
  • origin: Whether to export the metadata model from the source or the target.
  • selection_rules: A value that specifies the database objects to export.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "FileName": The name of the model file to create in the Amazon S3 bucket.
Main.Database_Migration_Service.start_metadata_model_export_to_targetMethod
start_metadata_model_export_to_target(migration_project_identifier, selection_rules)
start_metadata_model_export_to_target(migration_project_identifier, selection_rules, params::Dict{String,<:Any})

Applies converted database objects to your target database.

Arguments

  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).
  • selection_rules: A value that specifies the database objects to export.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "OverwriteExtensionPack": Whether to overwrite the migration project extension pack. An extension pack is an add-on module that emulates functions present in a source database that are required when converting objects to the target database.
Main.Database_Migration_Service.start_metadata_model_importMethod
start_metadata_model_import(migration_project_identifier, origin, selection_rules)
start_metadata_model_import(migration_project_identifier, origin, selection_rules, params::Dict{String,<:Any})

Loads the metadata for all the dependent database objects of the parent object. This operation uses your project's Amazon S3 bucket as a metadata cache to improve performance.

Arguments

  • migration_project_identifier: The migration project name or Amazon Resource Name (ARN).
  • origin: Whether to load metadata to the source or target database.
  • selection_rules: A value that specifies the database objects to import.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Refresh": If true, DMS loads metadata for the specified objects from the source database.
Main.Database_Migration_Service.start_recommendationsMethod
start_recommendations(database_id, settings)
start_recommendations(database_id, settings, params::Dict{String,<:Any})

Starts the analysis of your source database to provide recommendations of target engines. You can create recommendations for multiple source databases using BatchStartRecommendations.

Arguments

  • database_id: The identifier of the source database to analyze and provide recommendations for.
  • settings: The settings in JSON format that Fleet Advisor uses to determine target engine recommendations. These parameters include target instance sizing and availability and durability settings. For target instance sizing, Fleet Advisor supports the following two options: total capacity and resource utilization. For availability and durability, Fleet Advisor supports the following two options: production (Multi-AZ deployments) and Dev/Test (Single-AZ deployments).
Main.Database_Migration_Service.start_replicationMethod
start_replication(replication_config_arn, start_replication_type)
start_replication(replication_config_arn, start_replication_type, params::Dict{String,<:Any})

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.

Arguments

  • replication_config_arn: The Amazon Resource Name of the replication for which to start replication.
  • start_replication_type: The replication type.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "CdcStartPosition": 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.
  • "CdcStartTime": 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.
  • "CdcStopPosition": Indicates when you want a change data capture (CDC) operation to stop. The value can be either server time or commit time.
Main.Database_Migration_Service.start_replication_taskMethod
start_replication_task(replication_task_arn, start_replication_task_type)
start_replication_task(replication_task_arn, start_replication_task_type, params::Dict{String,<:Any})

Starts the replication task. For more information about DMS tasks, see Working with Migration Tasks in the Database Migration Service User Guide.

Arguments

  • replication_task_arn: The Amazon Resource Name (ARN) of the replication task to be started.
  • start_replication_task_type: The type of replication task to start. When the migration type is full-load or full-load-and-cdc, the only valid value for the first run of the task is start-replication. This option will start the migration. You can also use ReloadTables to reload specific tables that failed during migration instead of restarting the task. The resume-processing option isn't applicable for a full-load task, because you can't resume partially loaded tables during the full load phase. For a full-load-and-cdc task, DMS migrates table data, and then applies data changes that occur on the source. To load all the tables again, and start capturing source changes, use reload-target. Otherwise use resume-processing, to replicate the changes from the last stop position.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "CdcStartPosition": 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. Date Example: –cdc-start-position “2018-03-08T12:12:12” Checkpoint Example: –cdc-start-position "checkpoint:V1#27#mysql-bin-changelog.157832:1975:-1:2002:677883278264080:mysql-bin-changel og.157832:1876#0#0#*#0#93" LSN Example: –cdc-start-position “mysql-bin-changelog.000024:373” When you use this task setting with a source PostgreSQL database, a logical replication slot should already be created and associated with the source endpoint. You can verify this by setting the slotName extra connection attribute to the name of this logical replication slot. For more information, see Extra Connection Attributes When Using PostgreSQL as a Source for DMS.
  • "CdcStartTime": 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. Timestamp Example: –cdc-start-time “2018-03-08T12:12:12”
  • "CdcStopPosition": Indicates when you want a change data capture (CDC) operation to stop. The value can be either server time or commit time. Server time example: –cdc-stop-position “servertime:2018-02-09T12:12:12” Commit time example: –cdc-stop-position “committime:2018-02-09T12:12:12“
Main.Database_Migration_Service.start_replication_task_assessmentMethod
start_replication_task_assessment(replication_task_arn)
start_replication_task_assessment(replication_task_arn, params::Dict{String,<:Any})

Starts the replication task assessment for unsupported data types in the source database. You can only use this operation for a task if the following conditions are true: The task must be in the stopped state. The task must have successful connections to the source and target. If either of these conditions are not met, an InvalidResourceStateFault error will result. For information about DMS task assessments, see Creating a task assessment report in the Database Migration Service User Guide.

Arguments

  • replication_task_arn: The Amazon Resource Name (ARN) of the replication task.
Main.Database_Migration_Service.start_replication_task_assessment_runMethod
start_replication_task_assessment_run(assessment_run_name, replication_task_arn, result_location_bucket, service_access_role_arn)
start_replication_task_assessment_run(assessment_run_name, replication_task_arn, result_location_bucket, service_access_role_arn, params::Dict{String,<:Any})

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.

Arguments

  • assessment_run_name: Unique name to identify the assessment run.
  • replication_task_arn: Amazon Resource Name (ARN) of the migration task associated with the premigration assessment run that you want to start.
  • result_location_bucket: Amazon S3 bucket where you want DMS to store the results of this assessment run.
  • service_access_role_arn: ARN of the service role needed to start the assessment run. The role must allow the iam:PassRole action.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Exclude": Space-separated list of names for specific individual assessments that you want to exclude. These names come from the default list of individual assessments that DMS supports for the associated migration task. This task is specified by ReplicationTaskArn. You can't set a value for Exclude if you also set a value for IncludeOnly in the API operation. To identify the names of the default individual assessments that DMS supports for the associated migration task, run the DescribeApplicableIndividualAssessments operation using its own ReplicationTaskArn request parameter.
  • "IncludeOnly": Space-separated list of names for specific individual assessments that you want to include. These names come from the default list of individual assessments that DMS supports for the associated migration task. This task is specified by ReplicationTaskArn. You can't set a value for IncludeOnly if you also set a value for Exclude in the API operation. To identify the names of the default individual assessments that DMS supports for the associated migration task, run the DescribeApplicableIndividualAssessments operation using its own ReplicationTaskArn request parameter.
  • "ResultEncryptionMode": Encryption mode that you can specify to encrypt the results of this assessment run. If you don't specify this request parameter, DMS stores the assessment run results without encryption. You can specify one of the options following: "SSES3" – The server-side encryption provided as a default by Amazon S3. "SSEKMS" – Key Management Service (KMS) encryption. This encryption can use either a custom KMS encryption key that you specify or the default KMS encryption key that DMS provides.
  • "ResultKmsKeyArn": ARN of a custom KMS encryption key that you specify when you set ResultEncryptionMode to "SSE_KMS".
  • "ResultLocationFolder": Folder within an Amazon S3 bucket where you want DMS to store the results of this assessment run.
Main.Database_Migration_Service.stop_replicationMethod
stop_replication(replication_config_arn)
stop_replication(replication_config_arn, params::Dict{String,<:Any})

For a given DMS Serverless replication configuration, DMS stops any and all ongoing DMS Serverless replications. This command doesn't deprovision the stopped replications.

Arguments

  • replication_config_arn: The Amazon Resource Name of the replication to stop.
Main.Database_Migration_Service.stop_replication_taskMethod
stop_replication_task(replication_task_arn)
stop_replication_task(replication_task_arn, params::Dict{String,<:Any})

Stops the replication task.

Arguments

  • replication_task_arn: The Amazon Resource Name(ARN) of the replication task to be stopped.
Main.Database_Migration_Service.test_connectionMethod
test_connection(endpoint_arn, replication_instance_arn)
test_connection(endpoint_arn, replication_instance_arn, params::Dict{String,<:Any})

Tests the connection between the replication instance and the endpoint.

Arguments

  • endpoint_arn: The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
  • replication_instance_arn: The Amazon Resource Name (ARN) of the replication instance.
Main.Database_Migration_Service.update_subscriptions_to_event_bridgeMethod
update_subscriptions_to_event_bridge()
update_subscriptions_to_event_bridge(params::Dict{String,<:Any})

Migrates 10 active and enabled Amazon SNS subscriptions at a time and converts them to corresponding Amazon EventBridge rules. By default, this operation migrates subscriptions only when all your replication instance versions are 3.4.5 or higher. If any replication instances are from versions earlier than 3.4.5, the operation raises an error and tells you to upgrade these instances to version 3.4.5 or higher. To enable migration regardless of version, set the Force option to true. However, if you don't upgrade instances earlier than version 3.4.5, some types of events might not be available when you use Amazon EventBridge. To call this operation, make sure that you have certain permissions added to your user account. For more information, see Migrating event subscriptions to Amazon EventBridge in the Amazon Web Services Database Migration Service User Guide.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "ForceMove": When set to true, this operation migrates DMS subscriptions for Amazon SNS notifications no matter what your replication instance version is. If not set or set to false, this operation runs only when all your replication instances are from DMS version 3.4.5 or higher.