Module Values_0.AuthenticationConfigurationInputSource

A structure containing the authentication configuration in the CreateConnection request.

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

    A structure containing the authentication configuration in the CreateConnection request.

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

    The properties for OAuth2 authentication in the CreateConnection request.

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

    The secret manager ARN to store credentials in the CreateConnection request.

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

    The ARN of the KMS key used to encrypt the connection. Only taken an as input in the request and stored in the Secret Manager.

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

    The credentials used when the authentication type is basic authentication.

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

    The credentials used when the authentication type is custom authentication.

    *)
}
Sourceval make : ?authenticationType:??? -> ?oAuth2Properties:??? -> ?secretArn:??? -> ?kmsKeyArn:??? -> ?basicAuthenticationCredentials:??? -> ?customAuthenticationCredentials:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of CredentialKey.t ] * [> `String of CredentialValue.t ]) list | `String of SecretArn.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of TokenUrlParameterKey.t ] * [> `String of TokenUrlParameterValue.t ]) list | `String of TokenUrl.t | `Structure of (string * [> `String of UserManagedClientApplicationClientId.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