Module Values.IdMappingWorkflowInputSourceSource

An object containing inputSourceARN, schemaName, and type.

Sourcetype nonrec t = {
  1. inputSourceARN : InputSourceARN.t;
    (*

    An Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.

    *)
  2. schemaName : EntityName.t option;
    (*

    The name of the schema to be retrieved.

    *)
  3. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?schemaName:??? -> ?type_:??? -> inputSourceARN:InputSourceARN.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of InputSourceARN.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