Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DatabaseMigrationPreference

import type { DatabaseMigrationPreference } from "https://aws-api.deno.dev/v0.4/services/migrationhubstrategy.ts?docs=full";

Preferences for migrating a database to AWS.

interface DatabaseMigrationPreference {
heterogeneous?: Heterogeneous | null;
homogeneous?: Homogeneous | null;
noPreference?: NoDatabaseMigrationPreference | null;
}

§Properties

§
heterogeneous?: Heterogeneous | null
[src]

Indicates whether you are interested in moving from one type of database to another. For example, from SQL Server to Amazon Aurora MySQL-Compatible Edition.

§
homogeneous?: Homogeneous | null
[src]

Indicates whether you are interested in moving to the same type of database into AWS. For example, from SQL Server in your environment to SQL Server on AWS.

§

Indicated that you do not prefer heterogeneous or homogeneous.