Module Values.ConnectorEntitySource

The high-level entity that can be queried in Amazon AppFlow. For example, a Salesforce entity might be an Account or Opportunity, whereas a ServiceNow entity might be an Incident.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the connector entity.

    *)
  2. label : Label.t option;
    (*

    The label applied to the connector entity.

    *)
  3. hasNestedEntities : Boolean.t option;
    (*

    Specifies whether the connector entity is a parent or a category and has more entities nested underneath it. If another call is made with entitiesPath = "the_current_entity_name_with_hasNestedEntities_true", then it returns the nested entities underneath it. This provides a way to retrieve all supported entities in a recursive fashion.

    *)
}
Sourceval make : ?name:??? -> ?label:??? -> ?hasNestedEntities:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of Name.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