Module Values_0.AuthConfigurationSource

The authentication configuration for a connection returned by the DescribeConnectionType API.

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

    The type of authentication for a connection.

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

    The Amazon Resource Name (ARN) for the Secrets Manager.

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

    A map of key-value pairs for the OAuth2 properties. Each value is a a Property object.

    *)
  4. basicAuthenticationProperties : PropertiesMap.t option;
    (*

    A map of key-value pairs for the OAuth2 properties. Each value is a a Property object.

    *)
  5. customAuthenticationProperties : PropertiesMap.t option;
    (*

    A map of key-value pairs for the custom authentication properties. Each value is a a Property object.

    *)
}
Sourceval make : ?authenticationType:??? -> ?secretArn:??? -> ?oAuth2Properties:??? -> ?basicAuthenticationProperties:??? -> ?customAuthenticationProperties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of PropertyName.t ] * [> `Structure of (string * [> `Boolean of Bool_.t | `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `String of AllowedValueDescriptionString.t ]) list ] list | `String of PropertyName.t ]) list ]) list | `Structure of (string * [> `Boolean of Bool_.t | `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `String of AllowedValueDescriptionString.t ]) list ] list | `String of PropertyName.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