Module Values.UpdateExtensionRequestSource

Updates an AppConfig extension. For more information about extensions, see Extending workflows in the AppConfig User Guide.

Sourcetype nonrec t = {
  1. extensionIdentifier : Identifier.t;
    (*

    The name, the ID, or the Amazon Resource Name (ARN) of the extension.

    *)
  2. description : Description.t option;
    (*

    Information about the extension.

    *)
  3. actions : ActionsMap.t option;
    (*

    The actions defined in the extension.

    *)
  4. parameters : ParameterMap.t option;
    (*

    One or more parameters for the actions called by the extension.

    *)
  5. versionNumber : Integer.t option;
    (*

    The extension version number.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?actions:??? -> ?parameters:??? -> ?versionNumber:??? -> extensionIdentifier:Identifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Map of ([> `Enum of string | `String of ExtensionOrParameterName.t ] * [> `List of [> `Structure of (string * [> `String of Name.t ]) list ] list | `Structure of (string * [> `Boolean of Boolean.t | `String of Description.t ]) list ]) list | `String of Identifier.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