Module Values_2.GetUserDefinedFunctionsRequestSource

Retrieves multiple function definitions from the Data Catalog.

Sourcetype nonrec t = {
  1. catalogId : Values_0.CatalogIdString.t option;
    (*

    The ID of the Data Catalog where the functions to be retrieved are located. If none is provided, the Amazon Web Services account ID is used by default.

    *)
  2. databaseName : Values_0.NameString.t option;
    (*

    The name of the catalog database where the functions are located. If none is provided, functions from all the databases across the catalog will be returned.

    *)
  3. pattern : Values_0.NameString.t;
    (*

    An optional function-name pattern string that filters the function definitions returned.

    *)
  4. functionType : Values_1.FunctionType.t option;
    (*

    An optional function-type pattern string that filters the function definitions returned from Amazon Redshift Federated Permissions Catalog. Specify a value of REGULAR_FUNCTION or STORED_PROCEDURE. The STORED_PROCEDURE function type is only compatible with Amazon Redshift Federated Permissions Catalog.

    *)
  5. nextToken : Values_1.Token.t option;
    (*

    A continuation token, if this is a continuation call.

    *)
  6. maxResults : Values_0.CatalogGetterPageSize.t option;
    (*

    The maximum number of functions to return in one response.

    *)
}
Sourceval context_ : string
Sourceval make : ?catalogId:??? -> ?databaseName:??? -> ?functionType:??? -> ?nextToken:??? -> ?maxResults:??? -> pattern:Values_0.NameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.CatalogGetterPageSize.t | `String of Values_0.CatalogIdString.t ]) 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