/** *
Describes a database image, or blueprint. A blueprint describes the major engine version of a database.
*/ export interface _RelationalDatabaseBlueprint { /** *The ID for the database blueprint.
*/ blueprintId?: string; /** *The database software of the database blueprint (for example, MySQL).
The database engine version for the database blueprint (for example, 5.7.23).
The description of the database engine for the database blueprint.
*/ engineDescription?: string; /** *The description of the database engine version for the database blueprint.
*/ engineVersionDescription?: string; /** *A Boolean value indicating whether the engine version is the default for the database blueprint.
*/ isEngineDefault?: boolean; } export declare type _UnmarshalledRelationalDatabaseBlueprint = _RelationalDatabaseBlueprint;