Module Values.CreateRelationalDatabaseSnapshotRequestSource

Creates a snapshot of your database in Amazon Lightsail. You can use snapshots for backups, to make copies of a database, and to save data before deleting a database. The create relational database snapshot operation supports tag-based access control via request tags. For more information, see the Amazon Lightsail Developer Guide.

Sourcetype nonrec t = {
  1. relationalDatabaseName : ResourceName.t;
    (*

    The name of the database on which to base your new snapshot.

    *)
  2. relationalDatabaseSnapshotName : ResourceName.t;
    (*

    The name for your new database snapshot. Constraints: Must contain from 2 to 255 alphanumeric characters, or hyphens. The first and last character must be a letter or number.

    *)
  3. tags : TagList.t option;
    (*

    The tag keys and optional values to add to the resource during create. Use the TagResource action to tag a resource after it's created.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> relationalDatabaseName:ResourceName.t -> relationalDatabaseSnapshotName:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ResourceName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t