AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

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

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DeleteLaunchTemplateAsync.

Namespace: Amazon.EC2
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z

Syntax

C#
public abstract DeleteLaunchTemplateResponse DeleteLaunchTemplate(
         DeleteLaunchTemplateRequest request
)

Parameters

request
Type: Amazon.EC2.Model.DeleteLaunchTemplateRequest

Container for the necessary parameters to execute the DeleteLaunchTemplate service method.

Return Value


The response from the DeleteLaunchTemplate service method, as returned by EC2.

Examples

This example deletes the specified launch template.

To delete a launch template


var client = new AmazonEC2Client();
var response = client.DeleteLaunchTemplate(new DeleteLaunchTemplateRequest 
{
    LaunchTemplateId = "lt-0abcd290751193123"
});

LaunchTemplate launchTemplate = response.LaunchTemplate;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also