Module Values.UpdateAdapterResponseSource

Update the configuration for an adapter. FeatureTypes configurations cannot be updated. At least one new parameter must be specified as an argument.

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

    A string containing a unique ID for the adapter that has been updated.

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

    A string containing the name of the adapter that has been updated.

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

    An object specifying the creation time of the the adapter that has been updated.

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

    A string containing the description of the adapter that has been updated.

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

    List of the targeted feature types for the updated adapter.

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

    The auto-update status of the adapter that has been updated.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerError of InternalServerError.t
  4. | `InvalidParameterException of InvalidParameterException.t
  5. | `ProvisionedThroughputExceededException of ProvisionedThroughputExceededException.t
  6. | `ResourceNotFoundException of ResourceNotFoundException.t
  7. | `ThrottlingException of ThrottlingException.t
  8. | `ValidationException of ValidationException.t
  9. | `Unknown_operation_error of string * string option
]
Sourceval make : ?adapterId:??? -> ?adapterName:??? -> ?creationTime:??? -> ?description:??? -> ?featureTypes:??? -> ?autoUpdate:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of unit | `ConflictException 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 | `ConflictException 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 | `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