logo
pub struct RelationalDatabase {
Show 26 fields pub arn: Option<String>, pub backup_retention_enabled: Option<bool>, pub ca_certificate_identifier: Option<String>, pub created_at: Option<f64>, pub engine: Option<String>, pub engine_version: Option<String>, pub hardware: Option<RelationalDatabaseHardware>, pub latest_restorable_time: Option<f64>, pub location: Option<ResourceLocation>, pub master_database_name: Option<String>, pub master_endpoint: Option<RelationalDatabaseEndpoint>, pub master_username: Option<String>, pub name: Option<String>, pub parameter_apply_status: Option<String>, pub pending_maintenance_actions: Option<Vec<PendingMaintenanceAction>>, pub pending_modified_values: Option<PendingModifiedRelationalDatabaseValues>, pub preferred_backup_window: Option<String>, pub preferred_maintenance_window: Option<String>, pub publicly_accessible: Option<bool>, pub relational_database_blueprint_id: Option<String>, pub relational_database_bundle_id: Option<String>, pub resource_type: Option<String>, pub secondary_availability_zone: Option<String>, pub state: Option<String>, pub support_code: Option<String>, pub tags: Option<Vec<Tag>>,
}
Expand description

Describes a database.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the database.

backup_retention_enabled: Option<bool>

A Boolean value indicating whether automated backup retention is enabled for the database.

ca_certificate_identifier: Option<String>

The certificate associated with the database.

created_at: Option<f64>

The timestamp when the database was created. Formatted in Unix time.

engine: Option<String>

The database software (for example, MySQL).

engine_version: Option<String>

The database engine version (for example, 5.7.23).

hardware: Option<RelationalDatabaseHardware>

Describes the hardware of the database.

latest_restorable_time: Option<f64>

The latest point in time to which the database can be restored. Formatted in Unix time.

location: Option<ResourceLocation>

The Region name and Availability Zone where the database is located.

master_database_name: Option<String>

The name of the master database created when the Lightsail database resource is created.

master_endpoint: Option<RelationalDatabaseEndpoint>

The master endpoint for the database.

master_username: Option<String>

The master user name of the database.

name: Option<String>

The unique name of the database resource in Lightsail.

parameter_apply_status: Option<String>

The status of parameter updates for the database.

pending_maintenance_actions: Option<Vec<PendingMaintenanceAction>>

Describes the pending maintenance actions for the database.

pending_modified_values: Option<PendingModifiedRelationalDatabaseValues>

Describes pending database value modifications.

preferred_backup_window: Option<String>

The daily time range during which automated backups are created for the database (for example, 16:00-16:30).

preferred_maintenance_window: Option<String>

The weekly time range during which system maintenance can occur on the database.

In the format ddd:hh24:mi-ddd:hh24:mi. For example, Tue:17:00-Tue:17:30.

publicly_accessible: Option<bool>

A Boolean value indicating whether the database is publicly accessible.

relational_database_blueprint_id: Option<String>

The blueprint ID for the database. A blueprint describes the major engine version of a database.

relational_database_bundle_id: Option<String>

The bundle ID for the database. A bundle describes the performance specifications for your database.

resource_type: Option<String>

The Lightsail resource type for the database (for example, RelationalDatabase).

secondary_availability_zone: Option<String>

Describes the secondary Availability Zone of a high availability database.

The secondary database is used for failover support of a high availability database.

state: Option<String>

Describes the current state of the database.

support_code: Option<String>

The support code for the database. Include this code in your email to support when you have questions about a database in Lightsail. This code enables our support team to look up your Lightsail information more easily.

tags: Option<Vec<Tag>>

The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Lightsail Dev Guide.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more