Module Values.HoneycodeConnectorProfileCredentialsSource

The connector-specific credentials required when using Amazon Honeycode.

Sourcetype nonrec t = {
  1. accessToken : AccessToken.t option;
    (*

    The credentials used to access protected Amazon Honeycode resources.

    *)
  2. refreshToken : RefreshToken.t option;
    (*

    The credentials used to acquire new access tokens.

    *)
  3. oAuthRequest : ConnectorOAuthRequest.t option;
}
Sourceval make : ?accessToken:??? -> ?refreshToken:??? -> ?oAuthRequest:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccessToken.t | `Structure of (string * [> `String of AuthCode.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