Interface LaunchTemplateAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LaunchTemplateAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.441Z")
@Stability(Stable)
public interface LaunchTemplateAttributes
extends software.amazon.jsii.JsiiSerializable
Attributes for an imported LaunchTemplate.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; LaunchTemplateAttributes launchTemplateAttributes = LaunchTemplateAttributes.builder() .launchTemplateId("launchTemplateId") .launchTemplateName("launchTemplateName") .versionNumber("versionNumber") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forLaunchTemplateAttributes
static final class
An implementation forLaunchTemplateAttributes
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLaunchTemplateId
The identifier of the Launch Template.Exactly one of
launchTemplateId
andlaunchTemplateName
may be set.Default: None
-
getLaunchTemplateName
The name of the Launch Template.Exactly one of
launchTemplateId
andlaunchTemplateName
may be set.Default: None
-
getVersionNumber
The version number of this launch template to use.Default: Version: "$Default"
-
builder
- Returns:
- a
LaunchTemplateAttributes.Builder
ofLaunchTemplateAttributes
-