Module Values.AuthenticationConfigurationSource

The authentication configuration of a connection.

Sourcetype nonrec t = {
  1. authenticationType : AuthenticationType.t option;
    (*

    The authentication type of a connection.

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

    The secret ARN of a connection.

    *)
  3. oAuth2Properties : OAuth2Properties.t option;
    (*

    The oAuth2 properties of a connection.

    *)
}
Sourceval make : ?authenticationType:??? -> ?secretArn:??? -> ?oAuth2Properties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AuthenticationConfigurationSecretArnString.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of TokenUrlParametersMapKeyString.t ] * [> `String of TokenUrlParametersMapValueString.t ]) list | `String of OAuth2PropertiesTokenUrlString.t | `Structure of (string * [> `String of OAuth2ClientApplicationUserManagedClientApplicationClientIdString.t ]) list ]) 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