Module Values.FastLaunchLaunchTemplateSpecificationSource

Identifies the launch template that the associated Windows AMI uses for launching an instance when faster launching is enabled. You can specify either the launchTemplateName or the launchTemplateId, but not both.

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

    The ID of the launch template to use for faster launching for a Windows AMI.

    *)
  2. launchTemplateName : NonEmptyString.t option;
    (*

    The name of the launch template to use for faster launching for a Windows AMI.

    *)
  3. launchTemplateVersion : NonEmptyString.t option;
    (*

    The version of the launch template to use for faster launching for a Windows AMI.

    *)
}
Sourceval make : ?launchTemplateId:??? -> ?launchTemplateName:??? -> ?launchTemplateVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LaunchTemplateId.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