Module Values.UpdateEnvironmentTemplateVersionInputSource

Update a major or minor version of an environment template.

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

    A description of environment template version to update.

    *)
  2. majorVersion : TemplateVersionPart.t;
    (*

    To update a major version of an environment template, include major Version.

    *)
  3. minorVersion : TemplateVersionPart.t;
    (*

    To update a minor version of an environment template, include minorVersion.

    *)
  4. status : TemplateVersionStatus.t option;
    (*

    The status of the environment template minor version to update.

    *)
  5. templateName : ResourceName.t;
    (*

    The name of the environment template.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?status:??? -> majorVersion:TemplateVersionPart.t -> minorVersion:TemplateVersionPart.t -> templateName:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Description.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