Module Values_6.DeleteLaunchTemplateRequestSource

Deletes a launch template. Deleting a launch template deletes all of its versions.

Sourcetype nonrec t = {
  1. dryRun : Values_0.Boolean.t option;
    (*

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

    *)
  2. launchTemplateId : Values_0.LaunchTemplateId.t option;
    (*

    The ID of the launch template. You must specify either the launch template ID or the launch template name, but not both.

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

    The name of the launch template. You must specify either the launch template ID or the launch template name, but not both.

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