Module Values.LaunchTemplateSpecificationSource

An Amazon Elastic Compute Cloud launch template that contains configuration settings and game server code to be deployed to all instances in a game server group. The launch template is specified when creating a new game server group.

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

    A unique identifier for an existing Amazon EC2 launch template.

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

    A readable identifier for an existing Amazon EC2 launch template.

    *)
  3. version : LaunchTemplateVersion.t option;
    (*

    The version of the Amazon EC2 launch template to use. If no version is specified, the default version will be used. With Amazon EC2, you can specify a default version for a launch template. If none is set, the default is the first version created.

    *)
}
Sourceval make : ?launchTemplateId:??? -> ?launchTemplateName:??? -> ?version:??? -> 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