Module Values.DescribeConnectorEntityRequestSource

Provides details regarding the entity used with the connector, with a description of the data model for each field in that entity.

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

    The entity name for that connector.

    *)
  2. connectorType : ConnectorType.t option;
    (*

    The type of connector application, such as Salesforce, Amplitude, and so on.

    *)
  3. connectorProfileName : ConnectorProfileName.t option;
    (*

    The name of the connector profile. The name is unique for each ConnectorProfile in the Amazon Web Services account.

    *)
  4. apiVersion : ApiVersion.t option;
    (*

    The version of the API that's used by the connector.

    *)
}
Sourceval context_ : string
Sourceval make : ?connectorType:??? -> ?connectorProfileName:??? -> ?apiVersion:??? -> connectorEntityName:EntityName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EntityName.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