Module Values.CreateEnvironmentTemplateVersionInputSource

Create a new major or minor version of an environment template. A major version of an environment template is a version that isn't backwards compatible. A minor version of an environment template is a version that's backwards compatible within its major version.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    When included, if two identical requests are made with the same client token, Proton returns the environment template version that the first request created.

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

    A description of the new version of an environment template.

    *)
  3. majorVersion : TemplateVersionPart.t option;
    (*

    To create a new minor version of the environment template, include major Version. To create a new major and minor version of the environment template, exclude major Version.

    *)
  4. source : TemplateVersionSourceInput.t;
    (*

    An object that includes the template bundle S3 bucket path and name for the new version of an template.

    *)
  5. tags : TagList.t option;
    (*

    An optional list of metadata items that you can associate with the Proton environment template version. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.

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

    The name of the environment template.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?description:??? -> ?majorVersion:??? -> ?tags:??? -> source:TemplateVersionSourceInput.t -> templateName:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ClientToken.t | `Structure of (string * [> `Structure of (string * [> `String of S3Bucket.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