Module Values.ConnectionSource

Contains information about a connection.

Sourcetype nonrec t = {
  1. connectionArn : ConnectionArn.t option;
    (*

    The ARN of the connection.

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

    The name of the connection.

    *)
  3. connectionState : ConnectionState.t option;
    (*

    The state of the connection.

    *)
  4. stateReason : ConnectionStateReason.t option;
    (*

    The reason that the connection is in the connection state.

    *)
  5. authorizationType : ConnectionAuthorizationType.t option;
    (*

    The authorization type specified for the connection. OAUTH tokens are refreshed when a 401 or 407 response is returned.

    *)
  6. creationTime : Timestamp.t option;
    (*

    A time stamp for the time that the connection was created.

    *)
  7. lastModifiedTime : Timestamp.t option;
    (*

    A time stamp for the time that the connection was last modified.

    *)
  8. lastAuthorizedTime : Timestamp.t option;
    (*

    A time stamp for the time that the connection was last authorized.

    *)
}
Sourceval make : ?connectionArn:??? -> ?name:??? -> ?connectionState:??? -> ?stateReason:??? -> ?authorizationType:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?lastAuthorizedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ConnectionArn.t | `Timestamp of Timestamp.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