Module Values.IdNamespaceSummarySource

A summary of ID namespaces.

Sourcetype nonrec t = {
  1. idNamespaceName : EntityName.t option;
    (*

    The name of the ID namespace.

    *)
  2. idNamespaceArn : IdNamespaceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the ID namespace.

    *)
  3. description : Description.t option;
    (*

    The description of the ID namespace.

    *)
  4. idMappingWorkflowProperties : IdNamespaceIdMappingWorkflowMetadataList.t option;
    (*

    An object which defines any additional configurations required by the ID mapping workflow.

    *)
  5. type_ : IdNamespaceType.t option;
    (*

    The type of ID namespace. There are two types: SOURCE and TARGET. The SOURCE contains configurations for sourceId data that will be processed in an ID mapping workflow. The TARGET contains a configuration of targetId which all sourceIds will resolve to.

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

    The timestamp of when the ID namespace was created.

    *)
  7. updatedAt : Timestamp.t option;
    (*

    The timestamp of when the ID namespace was last updated.

    *)
}
Sourceval make : ?idNamespaceName:??? -> ?idNamespaceArn:??? -> ?description:??? -> ?idMappingWorkflowProperties:??? -> ?type_:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string ]) list ] list | `String of EntityName.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