Skip to main content

relational_database_blueprints

Creates, updates, deletes, gets or lists a relational_database_blueprints resource.

Overview

Namerelational_database_blueprints
TypeResource
Idaws.lightsail.relational_database_blueprints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
blueprint_idstringThe ID for the database blueprint.
enginestringThe database software of the database blueprint (for example, MySQL). (mysql)
engine_descriptionstringThe description of the database engine for the database blueprint.
engine_versionstringThe database engine version for the database blueprint (for example, 5.7.23).
engine_version_descriptionstringThe description of the database engine version for the database blueprint.
is_engine_defaultbooleanA Boolean value indicating whether the engine version is the default for the database blueprint.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_relational_database_blueprintsselectregionReturns a list of available database blueprints in Amazon Lightsail. A blueprint describes the major engine version of a database. You can use a blueprint ID to create a new database that runs a specific database engine.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns a list of available database blueprints in Amazon Lightsail. A blueprint describes the major engine version of a database. You can use a blueprint ID to create a new database that runs a specific database engine.

SELECT
blueprint_id,
engine,
engine_description,
engine_version,
engine_version_description,
is_engine_default
FROM aws.lightsail.relational_database_blueprints
WHERE region = '{{ region }}' -- required
;