Interface LaunchTemplateSpecification.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LaunchTemplateSpecification.Builder,LaunchTemplateSpecification>,SdkBuilder<LaunchTemplateSpecification.Builder,LaunchTemplateSpecification>,SdkPojo
- Enclosing class:
- LaunchTemplateSpecification
public static interface LaunchTemplateSpecification.Builder extends SdkPojo, CopyableBuilder<LaunchTemplateSpecification.Builder,LaunchTemplateSpecification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LaunchTemplateSpecification.BuilderlaunchTemplateId(String launchTemplateId)The ID of the launch template.LaunchTemplateSpecification.BuilderlaunchTemplateName(String launchTemplateName)The name of the launch template.LaunchTemplateSpecification.Builderversion(String version)The launch template version number,$Latest, or$Default.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
launchTemplateId
LaunchTemplateSpecification.Builder launchTemplateId(String launchTemplateId)
The ID of the launch template.
You must specify either the launch template ID or the launch template name, but not both.
- Parameters:
launchTemplateId- The ID of the launch template.You must specify either the launch template ID or the launch template name, but not both.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
launchTemplateName
LaunchTemplateSpecification.Builder launchTemplateName(String launchTemplateName)
The name of the launch template.
You must specify either the launch template ID or the launch template name, but not both.
- Parameters:
launchTemplateName- The name of the launch template.You must specify either the launch template ID or the launch template name, but not both.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
LaunchTemplateSpecification.Builder version(String version)
The launch template version number,
$Latest, or$Default.A value of
$Latestuses the latest version of the launch template.A value of
$Defaultuses the default version of the launch template.Default: The default version of the launch template.
- Parameters:
version- The launch template version number,$Latest, or$Default.A value of
$Latestuses the latest version of the launch template.A value of
$Defaultuses the default version of the launch template.Default: The default version of the launch template.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-