pub struct FleetLaunchTemplateSpecification {
pub launch_template_id: Option<String>,
pub launch_template_name: Option<String>,
pub version: Option<String>,
}Expand description
Describes the Amazon EC2 launch template and the launch template version that can be used by a Spot Fleet request to configure Amazon EC2 instances. For information about launch templates, see Launching an instance from a launch template in the Amazon EC2 User Guide for Linux Instances.
Fields§
§launch_template_id: Option<String>The ID of the launch template. If you specify the template ID, you can't specify the template name.
launch_template_name: Option<String>The name of the launch template. If you specify the template name, you can't specify the template ID.
version: Option<String>The launch template version number, $Latest, or $Default. You must specify a value, otherwise the request fails.
If the value is $Latest, Amazon EC2 uses the latest version of the launch template.
If the value is $Default, Amazon EC2 uses the default version of the launch template.
Trait Implementations§
Source§impl Clone for FleetLaunchTemplateSpecification
impl Clone for FleetLaunchTemplateSpecification
Source§fn clone(&self) -> FleetLaunchTemplateSpecification
fn clone(&self) -> FleetLaunchTemplateSpecification
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for FleetLaunchTemplateSpecification
impl Default for FleetLaunchTemplateSpecification
Source§fn default() -> FleetLaunchTemplateSpecification
fn default() -> FleetLaunchTemplateSpecification
Source§impl PartialEq for FleetLaunchTemplateSpecification
impl PartialEq for FleetLaunchTemplateSpecification
Source§fn eq(&self, other: &FleetLaunchTemplateSpecification) -> bool
fn eq(&self, other: &FleetLaunchTemplateSpecification) -> bool
self and other values to be equal, and is used by ==.