Module Values_2.LaunchTemplateSource

Describes a launch template.

Sourcetype nonrec t = {
  1. launchTemplateId : Values_0.String_.t option;
    (*

    The ID of the launch template.

    *)
  2. launchTemplateName : Values_0.LaunchTemplateName.t option;
    (*

    The name of the launch template.

    *)
  3. createTime : Values_0.DateTime.t option;
    (*

    The time launch template was created.

    *)
  4. createdBy : Values_0.String_.t option;
    (*

    The principal that created the launch template.

    *)
  5. defaultVersionNumber : Values_0.Long.t option;
    (*

    The version number of the default version of the launch template.

    *)
  6. latestVersionNumber : Values_0.Long.t option;
    (*

    The version number of the latest version of the launch template.

    *)
  7. tags : Values_0.TagList.t option;
    (*

    The tags for the launch template.

    *)
  8. operator : Values_0.OperatorResponse.t option;
    (*

    The entity that manages the launch template.

    *)
}
Sourceval make : ?launchTemplateId:??? -> ?launchTemplateName:??? -> ?createTime:??? -> ?createdBy:??? -> ?defaultVersionNumber:??? -> ?latestVersionNumber:??? -> ?tags:??? -> ?operator:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `Long of Values_0.Long.t | `String of Values_0.String_.t | `Structure of (string * [> `Boolean of bool | `String of string ]) list | `Timestamp of Values_0.DateTime.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