Module Values.GetConnectorDefinitionVersionRequestSource

Retrieves information about a connector definition version, including the connectors that the version contains. Connectors are prebuilt modules that interact with local infrastructure, device protocols, AWS, and other cloud services.

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

    The ID of the connector definition.

    *)
  2. connectorDefinitionVersionId : string;
    (*

    The ID of the connector definition version. This value maps to the ''Version'' property of the corresponding ''VersionInformation'' object, which is returned by ''ListConnectorDefinitionVersions'' requests. If the version is the last one that was associated with a connector definition, the value also maps to the ''LatestVersion'' property of the corresponding ''DefinitionInformation'' object.

    *)
  3. nextToken : string option;
    (*

    The token for the next set of results, or ''null'' if there are no additional results.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> connectorDefinitionId:string -> connectorDefinitionVersionId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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