AWS SDK Version 4 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Modifies the specified schema conversion configuration using the provided parameters.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to ModifyConversionConfigurationAsync.

Namespace: Amazon.DatabaseMigrationService
Assembly: AWSSDK.DatabaseMigrationService.dll
Version: 3.x.y.z

Syntax

C#
public virtual ModifyConversionConfigurationResponse ModifyConversionConfiguration(
         ModifyConversionConfigurationRequest request
)

Parameters

request
Type: Amazon.DatabaseMigrationService.Model.ModifyConversionConfigurationRequest

Container for the necessary parameters to execute the ModifyConversionConfiguration service method.

Return Value


The response from the ModifyConversionConfiguration service method, as returned by DatabaseMigrationService.

Exceptions

ExceptionCondition
InvalidResourceStateException The resource is in a state that prevents it from being used for database migration.
ResourceNotFoundException The resource could not be found.

Examples

Modifies the specified schema conversion configuration using the provided parameters.

Modify Conversion Configuration


var client = new AmazonDatabaseMigrationServiceClient();
var response = client.ModifyConversionConfiguration(new ModifyConversionConfigurationRequest 
{
    ConversionConfiguration = "{\"Common project settings\":{\"ShowSeverityLevelInSql\":\"CRITICAL\"},\"ORACLE_TO_POSTGRESQL\" : {\"ToTimeZone\":false,\"LastDayBuiltinFunctionOracle\":false,   \"NextDayBuiltinFunctionOracle\":false,\"ConvertProceduresToFunction\":false,\"NvlBuiltinFunctionOracle\":false,\"DbmsAssertBuiltinFunctionOracle\":false}}",
    MigrationProjectIdentifier = "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012"
});

string migrationProjectIdentifier = response.MigrationProjectIdentifier;

            

Version Information

.NET Framework:
Supported in: 4.7.2 and newer

See Also