Module Values_1.DescribeEntityResponseSource

Provides details regarding the entity used with the connection type, with a description of the data model for each field in the selected entity. The response includes all the fields which make up the entity.

Sourcetype nonrec t = {
  1. fields : FieldsList.t option;
    (*

    Describes the fields for that connector entity. This is the list of Field objects. Field is very similar to column in a database. The Field object has information about different properties associated with fields in the connector.

    *)
  2. nextToken : NextToken.t option;
    (*

    A continuation token, present if the current segment is not the last.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of Values_0.AccessDeniedException.t
  2. | `EntityNotFoundException of Values_0.EntityNotFoundException.t
  3. | `FederationSourceException of Values_0.FederationSourceException.t
  4. | `GlueEncryptionException of Values_0.GlueEncryptionException.t
  5. | `InvalidInputException of Values_0.InvalidInputException.t
  6. | `OperationTimeoutException of Values_0.OperationTimeoutException.t
  7. | `ValidationException of ValidationException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?fields:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of Values_0.AccessDeniedException.t | `EntityNotFoundException of Values_0.EntityNotFoundException.t | `FederationSourceException of Values_0.FederationSourceException.t | `GlueEncryptionException of Values_0.GlueEncryptionException.t | `InvalidInputException of Values_0.InvalidInputException.t | `OperationTimeoutException of Values_0.OperationTimeoutException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of Values_0.AccessDeniedException.t | `EntityNotFoundException of Values_0.EntityNotFoundException.t | `FederationSourceException of Values_0.FederationSourceException.t | `GlueEncryptionException of Values_0.GlueEncryptionException.t | `InvalidInputException of Values_0.InvalidInputException.t | `OperationTimeoutException of Values_0.OperationTimeoutException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Values_0.Bool_.t | `Enum of string | `List of [> `Enum of string | `String of string ] list | `Map of ([> `String of Values_0.String_.t ] * [> `String of Values_0.String_.t ]) list | `String of EntityFieldName.t ]) list ] list | `String of NextToken.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