Module Values.DataLakeNamespaceSource

The data lake namespace details.

Sourcetype nonrec t = {
  1. instanceId : UUID.t option;
    (*

    The Amazon Web Services Supply Chain instance identifier.

    *)
  2. name : DataLakeNamespaceName.t option;
    (*

    The name of the namespace.

    *)
  3. arn : AscResourceArn.t option;
    (*

    The arn of the namespace.

    *)
  4. description : DataLakeNamespaceDescription.t option;
    (*

    The description of the namespace.

    *)
  5. createdTime : Timestamp.t option;
    (*

    The creation time of the namespace.

    *)
  6. lastModifiedTime : Timestamp.t option;
    (*

    The last modified time of the namespace.

    *)
}
Sourceval make : ?instanceId:??? -> ?name:??? -> ?arn:??? -> ?description:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.t | `Timestamp of Timestamp.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