Module Values.ConnectorSource

Create Connector.

Sourcetype nonrec t = {
  1. connectorID : ConnectorID.t option;
    (*

    Connector ID.

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

    Connector name.

    *)
  3. ssmInstanceID : SsmInstanceID.t option;
    (*

    Connector SSM instance ID.

    *)
  4. arn : ARN.t option;
    (*

    Connector arn.

    *)
  5. tags : TagsMap.t option;
    (*

    Connector tags.

    *)
  6. ssmCommandConfig : ConnectorSsmCommandConfig.t option;
    (*

    Connector SSM command config.

    *)
}
Sourcetype nonrec error = [
  1. | `UninitializedAccountException of UninitializedAccountException.t
  2. | `ValidationException of ValidationException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?connectorID:??? -> ?name:??? -> ?ssmInstanceID:??? -> ?arn:??? -> ?tags:??? -> ?ssmCommandConfig:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `UninitializedAccountException of UninitializedAccountException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `UninitializedAccountException of UninitializedAccountException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ConnectorID.t | `Structure of (string * [> `Boolean of Boolean.t | `String of S3BucketName.t ]) list ]) 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