Values.DescribeConnectorEntityRequestSourceProvides details regarding the entity used with the connector, with a description of the data model for each field in that entity.
type nonrec t = {connectorEntityName : EntityName.t;The entity name for that connector.
*)connectorType : ConnectorType.t option;The type of connector application, such as Salesforce, Amplitude, and so on.
*)connectorProfileName : ConnectorProfileName.t option;The name of the connector profile. The name is unique for each ConnectorProfile in the Amazon Web Services account.
*)apiVersion : ApiVersion.t option;The version of the API that's used by the connector.
*)}val make :
?connectorType:??? ->
?connectorProfileName:??? ->
?apiVersion:??? ->
connectorEntityName:EntityName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of EntityName.t ]) list ]