Module Values_1.FleetLaunchTemplateSpecificationRequestSource

The Amazon EC2 launch template that can be used by an EC2 Fleet to configure Amazon EC2 instances. You must specify either the ID or name of the launch template in the request, but not both. For information about launch templates, see Launch an instance from a launch template in the Amazon EC2 User Guide.

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

    The ID of the launch template. You must specify the LaunchTemplateId or the LaunchTemplateName, but not both.

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

    The name of the launch template. You must specify the LaunchTemplateName or the LaunchTemplateId, but not both.

    *)
  3. version : Values_0.String_.t option;
    (*

    The launch template version number, $Latest, or $Default. You must specify a value, otherwise the request fails. If the value is $Latest, Amazon EC2 uses the latest version of the launch template. If the value is $Default, Amazon EC2 uses the default version of the launch template.

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