Module Values.ConnectorSource

Information about a connector. Connectors run on the Greengrass core and contain built-in integration with local infrastructure, device protocols, AWS, and other cloud services.

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

    The ARN of the connector.

    *)
  2. id : string;
    (*

    A descriptive or arbitrary ID for the connector. This value must be unique within the connector definition version. Max length is 128 characters with pattern [a-zA-Z0-9:_-]+.

    *)
  3. parameters : (string * string) list option;
    (*

    The parameters or configuration that the connector uses.

    *)
}
Sourceval context_ : string
Sourceval make : ?parameters:??? -> connectorArn:string -> id:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) 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