[][src]Struct rusoto_lightsail::RelationalDatabase

pub struct RelationalDatabase {
    pub arn: Option<String>,
    pub backup_retention_enabled: Option<bool>,
    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>>,
}

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.

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

impl PartialEq<RelationalDatabase> for RelationalDatabase[src]

impl Default for RelationalDatabase[src]

impl Clone for RelationalDatabase[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for RelationalDatabase[src]

impl<'de> Deserialize<'de> for RelationalDatabase[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self