Module Values.PluginAuthConfigurationSource

Authentication configuration information for an Amazon Q Business plugin.

Sourcetype nonrec t = {
  1. basicAuthConfiguration : BasicAuthConfiguration.t option;
    (*

    Information about the basic authentication credentials used to configure a plugin.

    *)
  2. oAuth2ClientCredentialConfiguration : OAuth2ClientCredentialConfiguration.t option;
    (*

    Information about the OAuth 2.0 authentication credential/token used to configure a plugin.

    *)
  3. noAuthConfiguration : NoAuthConfiguration.t option;
    (*

    Information about invoking a custom plugin without any authentication.

    *)
  4. idcAuthConfiguration : IdcAuthConfiguration.t option;
    (*

    Information about the IAM Identity Center Application used to configure authentication for a plugin.

    *)
}
Sourceval make : ?basicAuthConfiguration:??? -> ?oAuth2ClientCredentialConfiguration:??? -> ?noAuthConfiguration:??? -> ?idcAuthConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of SecretArn.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