Module Values.CreateDBClusterSnapshotMessageSource

Creates a snapshot of a DB cluster.

Sourcetype nonrec t = {
  1. dBClusterSnapshotIdentifier : String_.t;
    (*

    The identifier of the DB cluster snapshot. This parameter is stored as a lowercase string. Constraints: Must contain from 1 to 63 letters, numbers, or hyphens. First character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens. Example: my-cluster1-snapshot1

    *)
  2. dBClusterIdentifier : String_.t;
    (*

    The identifier of the DB cluster to create a snapshot for. This parameter is not case-sensitive. Constraints: Must match the identifier of an existing DBCluster. Example: my-cluster1

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

    The tags to be assigned to the DB cluster snapshot.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> dBClusterSnapshotIdentifier:String_.t -> dBClusterIdentifier:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.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