View source: R/lightsail_operations.R
lightsail_create_relational_database | R Documentation |
Creates a new database in Amazon Lightsail.
See https://www.paws-r-sdk.com/docs/lightsail_create_relational_database/ for full documentation.
lightsail_create_relational_database(
relationalDatabaseName,
availabilityZone = NULL,
relationalDatabaseBlueprintId,
relationalDatabaseBundleId,
masterDatabaseName,
masterUsername,
masterUserPassword = NULL,
preferredBackupWindow = NULL,
preferredMaintenanceWindow = NULL,
publiclyAccessible = NULL,
tags = NULL
)
relationalDatabaseName |
[required] The name to use for your new Lightsail database resource. Constraints:
|
availabilityZone |
The Availability Zone in which to create your new database. Use the
You can get a list of Availability Zones by using the |
relationalDatabaseBlueprintId |
[required] The blueprint ID for your new database. A blueprint describes the major engine version of a database. You can get a list of database blueprints IDs by using the
|
relationalDatabaseBundleId |
[required] The bundle ID for your new database. A bundle describes the performance specifications for your database. You can get a list of database bundle IDs by using the
|
masterDatabaseName |
[required] The meaning of this parameter differs according to the database engine you use. MySQL The name of the database to create when the Lightsail database resource is created. If this parameter isn't specified, no database is created in the database resource. Constraints:
PostgreSQL The name of the database to create when the Lightsail database resource
is created. If this parameter isn't specified, a database named
Constraints:
|
masterUsername |
[required] The name for the master user. MySQL Constraints:
PostgreSQL Constraints:
|
masterUserPassword |
The password for the master user. The password can include any printable ASCII character except "/", """, or "@". It cannot contain spaces. MySQL Constraints: Must contain from 8 to 41 characters. PostgreSQL Constraints: Must contain from 8 to 128 characters. |
preferredBackupWindow |
The daily time range during which automated backups are created for your new database if automated backups are enabled. The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region. For more information about the preferred backup window time blocks for each region, see the Working With Backups guide in the Amazon Relational Database Service documentation. Constraints:
|
preferredMaintenanceWindow |
The weekly time range during which system maintenance can occur on your new database. The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring on a random day of the week. Constraints:
|
publiclyAccessible |
Specifies the accessibility options for your new database. A value of
|
tags |
The tag keys and optional values to add to the resource during create. Use the |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.