Module Values_1.OAuthParametersSource

An object that contains information needed to create a data source connection that uses OAuth client credentials. This option is available for data source connections that are made with Snowflake and Starburst.

Sourcetype nonrec t = {
  1. tokenProviderUrl : TokenProviderUrl.t;
    (*

    The token endpoint URL of the identity provider.

    *)
  2. oAuthScope : OAuthScope.t option;
    (*

    The OAuth scope.

    *)
  3. identityProviderVpcConnectionProperties : VpcConnectionProperties.t option;
  4. identityProviderResourceUri : IdentityProviderResourceUri.t option;
    (*

    The resource uri of the identity provider.

    *)
  5. identityProviderCACertificatesBundleS3Uri : CACertificatesBundleS3Uri.t option;
    (*

    The S3 URI of the identity provider's CA certificates bundle in PEM format. Use this parameter to provide a custom CA certificate bundle for the identity provider when the default trust store does not include the required certificates.

    *)
}
Sourceval context_ : string
Sourceval make : ?oAuthScope:??? -> ?identityProviderVpcConnectionProperties:??? -> ?identityProviderResourceUri:??? -> ?identityProviderCACertificatesBundleS3Uri:??? -> tokenProviderUrl:TokenProviderUrl.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TokenProviderUrl.t | `Structure of (string * [> `String of Values_0.Arn.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