Module Values.GlueOAuth2CredentialsSource

The GlueOAuth2 credentials of a connection.

Sourcetype nonrec t = {
  1. userManagedClientApplicationClientSecret : GlueOAuth2CredentialsUserManagedClientApplicationClientSecretString.t option;
    (*

    The user managed client application client secret of the connection.

    *)
  2. accessToken : GlueOAuth2CredentialsAccessTokenString.t option;
    (*

    The access token of a connection.

    *)
  3. refreshToken : GlueOAuth2CredentialsRefreshTokenString.t option;
    (*

    The refresh token of the connection.

    *)
  4. jwtToken : GlueOAuth2CredentialsJwtTokenString.t option;
    (*

    The jwt token of the connection.

    *)
}
Sourceval make : ?userManagedClientApplicationClientSecret:??? -> ?accessToken:??? -> ?refreshToken:??? -> ?jwtToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GlueOAuth2CredentialsUserManagedClientApplicationClientSecretString.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