Module Values.RelationalDatabaseSnapshotSource

Describes a database snapshot.

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

    The name of the database snapshot.

    *)
  2. arn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the database snapshot.

    *)
  3. supportCode : String_.t option;
    (*

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

    *)
  4. createdAt : IsoDate.t option;
    (*

    The timestamp when the database snapshot was created.

    *)
  5. location : ResourceLocation.t option;
    (*

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

    *)
  6. resourceType : ResourceType.t option;
    (*

    The Lightsail resource type.

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

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

    *)
  8. engine : NonEmptyString.t option;
    (*

    The software of the database snapshot (for example, MySQL)

    *)
  9. engineVersion : NonEmptyString.t option;
    (*

    The database engine version for the database snapshot (for example, 5.7.23).

    *)
  10. sizeInGb : Integer.t option;
    (*

    The size of the disk in GB (for example, 32) for the database snapshot.

    *)
  11. state : NonEmptyString.t option;
    (*

    The state of the database snapshot.

    *)
  12. fromRelationalDatabaseName : NonEmptyString.t option;
    (*

    The name of the source database from which the database snapshot was created.

    *)
  13. fromRelationalDatabaseArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the database from which the database snapshot was created.

    *)
  14. fromRelationalDatabaseBundleId : String_.t option;
    (*

    The bundle ID of the database from which the database snapshot was created.

    *)
  15. fromRelationalDatabaseBlueprintId : String_.t option;
    (*

    The blueprint ID of the database from which the database snapshot was created. A blueprint describes the major engine version of a database.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?supportCode:??? -> ?createdAt:??? -> ?location:??? -> ?resourceType:??? -> ?tags:??? -> ?engine:??? -> ?engineVersion:??? -> ?sizeInGb:??? -> ?state:??? -> ?fromRelationalDatabaseName:??? -> ?fromRelationalDatabaseArn:??? -> ?fromRelationalDatabaseBundleId:??? -> ?fromRelationalDatabaseBlueprintId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ResourceName.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of IsoDate.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