Module Values.UpdateDataIntegrationRequestSource

Updates the description of a DataIntegration. You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.

Sourcetype nonrec t = {
  1. identifier : Identifier.t;
    (*

    A unique identifier for the DataIntegration.

    *)
  2. name : Name.t option;
    (*

    The name of the DataIntegration.

    *)
  3. description : Description.t option;
    (*

    A description of the DataIntegration.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> identifier:Identifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Identifier.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