Module Values.CreateConnectionAuthRequestParametersSource

The authorization parameters for the connection. You must include only authorization parameters for the AuthorizationType you specify.

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

    The Basic authorization parameters to use for the connection.

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

    The OAuth authorization parameters to use for the connection.

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

    The API key authorization parameters to use for the connection.

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

    The API key authorization parameters to use for the connection. Note that if you include additional parameters for the target of a rule via HttpParameters, including query strings, the parameters added for the connection take precedence.

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

    If you specify a private OAuth endpoint, the parameters for EventBridge to use when authenticating 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