Module Values.SchemaMappingSummarySource

An object containing schemaName, schemaArn, createdAt, updatedAt, and hasWorkflows.

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

    The name of the schema.

    *)
  2. schemaArn : SchemaMappingArn.t option;
    (*

    The ARN (Amazon Resource Name) that Entity Resolution generated for the SchemaMapping.

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

    The timestamp of when the SchemaMapping was created.

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

    The timestamp of when the SchemaMapping was last updated.

    *)
  5. hasWorkflows : Boolean.t option;
    (*

    Specifies whether the schema mapping has been applied to a workflow.

    *)
}
Sourceval make : ?schemaName:??? -> ?schemaArn:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?hasWorkflows:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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