Module Values.GetAdapterResponseSource

Gets configuration information for an adapter specified by an AdapterId, returning information on AdapterName, Description, CreationTime, AutoUpdate status, and FeatureTypes.

Sourcetype nonrec t = {
  1. adapterId : AdapterId.t option;
    (*

    A string identifying the adapter that information has been retrieved for.

    *)
  2. adapterName : AdapterName.t option;
    (*

    The name of the requested adapter.

    *)
  3. creationTime : DateTime.t option;
    (*

    The date and time the requested adapter was created at.

    *)
  4. description : AdapterDescription.t option;
    (*

    The description for the requested adapter.

    *)
  5. featureTypes : FeatureTypes.t option;
    (*

    List of the targeted feature types for the requested adapter.

    *)
  6. autoUpdate : AutoUpdate.t option;
    (*

    Binary value indicating if the adapter is being automatically updated or not.

    *)
  7. tags : TagMap.t option;
    (*

    A set of tags (key-value pairs) associated with the adapter that has been retrieved.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerError of InternalServerError.t
  3. | `InvalidParameterException of InvalidParameterException.t
  4. | `ProvisionedThroughputExceededException of ProvisionedThroughputExceededException.t
  5. | `ResourceNotFoundException of ResourceNotFoundException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `ValidationException of ValidationException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?adapterId:??? -> ?adapterName:??? -> ?creationTime:??? -> ?description:??? -> ?featureTypes:??? -> ?autoUpdate:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of unit | `InternalServerError of unit | `InvalidParameterException of unit | `ProvisionedThroughputExceededException of unit | `ResourceNotFoundException of unit | `ThrottlingException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of unit | `InternalServerError of unit | `InvalidParameterException of unit | `ProvisionedThroughputExceededException of unit | `ResourceNotFoundException of unit | `ThrottlingException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AdapterId.t | `Timestamp of DateTime.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