relational_database_blueprints
Creates, updates, deletes, gets or lists a relational_database_blueprints resource.
Overview
| Name | relational_database_blueprints |
| Type | Resource |
| Id | aws.lightsail.relational_database_blueprints |
Fields
The following fields are returned by SELECT queries:
- get_relational_database_blueprints
| Name | Datatype | Description |
|---|---|---|
blueprint_id | string | The ID for the database blueprint. |
engine | string | The database software of the database blueprint (for example, MySQL). (mysql) |
engine_description | string | The description of the database engine for the database blueprint. |
engine_version | string | The database engine version for the database blueprint (for example, 5.7.23). |
engine_version_description | string | The description of the database engine version for the database blueprint. |
is_engine_default | boolean | A Boolean value indicating whether the engine version is the default for the database blueprint. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_relational_database_blueprints | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_relational_database_blueprints
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
;