Interface LaunchTemplateSpecification
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LaunchTemplateSpecification.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:47.669Z")
@Stability(Experimental)
public interface LaunchTemplateSpecification
extends software.amazon.jsii.JsiiSerializable
(experimental) Launch template property specification.
Example:
Vpc vpc; CfnLaunchTemplate myLaunchTemplate; ComputeEnvironment myComputeEnv = ComputeEnvironment.Builder.create(this, "ComputeEnv") .computeResources(ComputeResources.builder() .launchTemplate(LaunchTemplateSpecification.builder() .launchTemplateName((String)myLaunchTemplate.getLaunchTemplateName()) .build()) .vpc(vpc) .build()) .computeEnvironmentName("MyStorageCapableComputeEnvironment") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forLaunchTemplateSpecification
static final class
An implementation forLaunchTemplateSpecification
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLaunchTemplateName
(experimental) The Launch template name. -
getVersion
(experimental) The launch template version to be used (optional).Default: - the default version of the launch template
-
builder
-