Module Values.AuthenticationConfigurationInputSource

The authentication configuration of a connection.

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

    The authentication type of a connection.

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

    The oAuth2 properties of a connection.

    *)
  3. secretArn : AuthenticationConfigurationInputSecretArnString.t option;
    (*

    The secret ARN of a connection.

    *)
  4. kmsKeyArn : AuthenticationConfigurationInputKmsKeyArnString.t option;
    (*

    The KMS key ARN of a connection.

    *)
  5. basicAuthenticationCredentials : BasicAuthenticationCredentials.t option;
    (*

    The basic authentication credentials of a connection.

    *)
  6. customAuthenticationCredentials : CredentialMap.t option;
    (*

    The custom authentication credentials of a connection.

    *)
}
Sourceval make : ?authenticationType:??? -> ?oAuth2Properties:??? -> ?secretArn:??? -> ?kmsKeyArn:??? -> ?basicAuthenticationCredentials:??? -> ?customAuthenticationCredentials:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of CredentialMapKeyString.t ] * [> `String of CredentialMapValueString.t ]) list | `String of AuthenticationConfigurationInputSecretArnString.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