AWSEC2LaunchTemplateSpecification
Objective-C
@interface AWSEC2LaunchTemplateSpecification
Swift
class AWSEC2LaunchTemplateSpecification
Describes the launch template to use.
-
The ID of the launch template.
You must specify either the launch template ID or the launch template name, but not both.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable launchTemplateId;
Swift
var launchTemplateId: String? { get set }
-
The name of the launch template.
You must specify either the launch template ID or the launch template name, but not both.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable launchTemplateName;
Swift
var launchTemplateName: String? { get set }
-
The launch template version number,
$Latest
, or$Default
.A value of
$Latest
uses the latest version of the launch template.A value of
$Default
uses the default version of the launch template.Default: The default version of the launch template.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable version;
Swift
var version: String? { get set }