Show / Hide Table of Contents

Interface CfnInstance.ILaunchTemplateSpecificationProperty

Specifies a launch template to use when launching an Amazon EC2 instance.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnInstance.ILaunchTemplateSpecificationProperty
Syntax (vb)
Public Interface CfnInstance.ILaunchTemplateSpecificationProperty
Remarks

You must specify the following:

    For information about creating a launch template, see AWS::EC2::LaunchTemplate and Create a launch template in the Amazon EC2 User Guide . For example launch templates, see the Examples for AWS::EC2::LaunchTemplate .

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html

    ExampleMetadata: fixture=_generated

    Examples
    // The code below shows an example of how to instantiate this type.
                 // The values are placeholders you should change.
                 using Amazon.CDK.AWS.EC2;
    
                 var launchTemplateSpecificationProperty = new LaunchTemplateSpecificationProperty {
                     Version = "version",
    
                     // the properties below are optional
                     LaunchTemplateId = "launchTemplateId",
                     LaunchTemplateName = "launchTemplateName"
                 };

    Synopsis

    Properties

    LaunchTemplateId

    The ID of the launch template.

    LaunchTemplateName

    The name of the launch template.

    Version

    The version number of the launch template. You must specify this property.

    Properties

    LaunchTemplateId

    The ID of the launch template.

    string? LaunchTemplateId { get; }
    Property Value

    string

    Remarks

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

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplateid

    LaunchTemplateName

    The name of the launch template.

    string? LaunchTemplateName { get; }
    Property Value

    string

    Remarks

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

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-launchtemplatename

    Version

    The version number of the launch template. You must specify this property.

    string Version { get; }
    Property Value

    string

    Remarks

    To specify the default version of the template, use the Fn::GetAtt intrinsic function to retrieve the DefaultVersionNumber attribute of the launch template. To specify the latest version of the template, use Fn::GetAtt to retrieve the LatestVersionNumber attribute. For more information, see AWS::EC2:LaunchTemplate return values for Fn::GetAtt .

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html#cfn-ec2-instance-launchtemplatespecification-version

    Back to top Generated by DocFX