Module Values.DeleteNamespaceRequestSource

Deletes a namespace from Amazon Redshift Serverless. Before you delete the namespace, you can create a final snapshot that has all of the data within the namespace.

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

    The name of the snapshot to be created before the namespace is deleted.

    *)
  2. finalSnapshotRetentionPeriod : Integer.t option;
    (*

    How long to retain the final snapshot.

    *)
  3. namespaceName : NamespaceName.t;
    (*

    The name of the namespace to delete.

    *)
}
Sourceval context_ : string
Sourceval make : ?finalSnapshotName:??? -> ?finalSnapshotRetentionPeriod:??? -> namespaceName:NamespaceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `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