Module Values.UpdateSystemTemplateRequestSource

Updates the specified system. You don't need to run this action after updating a workflow. Any deployment that uses the system will see the changes in the system when it is redeployed.

Sourcetype nonrec t = {
  1. id : Urn.t;
    (*

    The ID of the system to be updated. The ID should be in the following format. urn:tdm:REGION/ACCOUNT ID/default:system:SYSTEMNAME

    *)
  2. definition : DefinitionDocument.t;
    (*

    The DefinitionDocument that contains the updated system definition.

    *)
  3. compatibleNamespaceVersion : Version.t option;
    (*

    The version of the user's namespace. Defaults to the latest version of the user's namespace. If no value is specified, the latest version is used by default.

    *)
}
Sourceval context_ : string
Sourceval make : ?compatibleNamespaceVersion:??? -> id:Urn.t -> definition:DefinitionDocument.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Version.t | `String of Urn.t | `Structure of (string * [> `Enum of string | `String of DefinitionText.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