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.

Modifies a launch template. You can specify which version of the launch template to set as the default version. When launching an instance, the default version applies when a launch template version is not specified.

Note:

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

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

Syntax

C#
public virtual ModifyLaunchTemplateResponse ModifyLaunchTemplate(
         ModifyLaunchTemplateRequest request
)

Parameters

request
Type: Amazon.EC2.Model.ModifyLaunchTemplateRequest

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

Return Value


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

Examples

This example specifies version 2 as the default version of the specified launch template.

To change the default version of a launch template


var client = new AmazonEC2Client();
var response = client.ModifyLaunchTemplate(new ModifyLaunchTemplateRequest 
{
    DefaultVersion = "2",
    LaunchTemplateId = "lt-0abcd290751193123"
});

LaunchTemplate launchTemplate = response.LaunchTemplate;

            

Version Information

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

See Also