Module Values.ConnectionAuthResponseParametersSource

Tthe authorization parameters to use for the connection.

Sourcetype nonrec t = {
  1. basicAuthParameters : ConnectionBasicAuthResponseParameters.t option;
    (*

    The authorization parameters for Basic authorization.

    *)
  2. oAuthParameters : ConnectionOAuthResponseParameters.t option;
    (*

    The OAuth parameters to use for authorization.

    *)
  3. apiKeyAuthParameters : ConnectionApiKeyAuthResponseParameters.t option;
    (*

    The API Key parameters to use for authorization.

    *)
  4. invocationHttpParameters : ConnectionHttpParameters.t option;
    (*

    Additional parameters for the connection that are passed through with every invocation to the HTTP endpoint.

    *)
  5. connectivityParameters : DescribeConnectionConnectivityParameters.t option;
    (*

    For private OAuth authentication endpoints. The parameters EventBridge uses to authenticate against the endpoint. For more information, see Authorization methods for connections in the Amazon EventBridge User Guide .

    *)
}
Sourceval make : ?basicAuthParameters:??? -> ?oAuthParameters:??? -> ?apiKeyAuthParameters:??? -> ?invocationHttpParameters:??? -> ?connectivityParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of HeaderKey.t ]) list ] list | `String of AuthHeaderParameters.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of HeaderKey.t ]) list ] list | `String of AuthHeaderParameters.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