Module Values.CreateConnectorDefinitionVersionRequestSource

Creates a version of a connector definition which has already been defined.

Sourcetype nonrec t = {
  1. amznClientToken : string option;
    (*

    A client token used to correlate requests and responses.

    *)
  2. connectorDefinitionId : string;
    (*

    The ID of the connector definition.

    *)
  3. connectors : Connector.t list option;
    (*

    A list of references to connectors in this version, with their corresponding configuration settings.

    *)
}
Sourceval context_ : string
Sourceval make : ?amznClientToken:??? -> ?connectors:??? -> connectorDefinitionId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) list ] list | `String of string ]) 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