Module Values.CustomPluginConfigurationSource

Configuration information required to create a custom plugin.

Sourcetype nonrec t = {
  1. description : PluginDescription.t;
    (*

    A description for your custom plugin configuration.

    *)
  2. apiSchemaType : APISchemaType.t;
    (*

    The type of OpenAPI schema to use.

    *)
  3. apiSchema : APISchema.t option;
    (*

    Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema.

    *)
}
Sourceval context_ : string
Sourceval make : ?apiSchema:??? -> description:PluginDescription.t -> apiSchemaType:APISchemaType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PluginDescription.t | `Structure of (string * [> `String of Payload.t | `Structure of (string * [> `String of S3BucketName.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