Module Values.ServiceNowDetailSource

Information about a ServiceNow ITSM integration.

Sourcetype nonrec t = {
  1. instanceName : NonEmptyString.t option;
    (*

    The instanceName of ServiceNow ITSM.

    *)
  2. secretArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the ServiceNow credentials.

    *)
  3. authStatus : ConnectorAuthStatus.t option;
    (*

    The status of the authorization between ServiceNow and the service.

    *)
}
Sourceval make : ?instanceName:??? -> ?secretArn:??? -> ?authStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.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