pub struct LaunchTemplateSpecification {
pub launch_template_id: Option<String>,
pub launch_template_name: Option<String>,
pub version: Option<String>,
}
Expand description
An object representing a launch template associated with a compute resource. You must specify either the launch template ID or launch template name in the request, but not both.
Fields§
§launch_template_id: Option<String>
The ID of the launch template.
launch_template_name: Option<String>
The name of the launch template.
version: Option<String>
The version number of the launch template.
Default: The default version of the launch template.
Trait Implementations§
Source§impl Clone for LaunchTemplateSpecification
impl Clone for LaunchTemplateSpecification
Source§fn clone(&self) -> LaunchTemplateSpecification
fn clone(&self) -> LaunchTemplateSpecification
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LaunchTemplateSpecification
impl Debug for LaunchTemplateSpecification
Source§impl Default for LaunchTemplateSpecification
impl Default for LaunchTemplateSpecification
Source§fn default() -> LaunchTemplateSpecification
fn default() -> LaunchTemplateSpecification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LaunchTemplateSpecification
impl<'de> Deserialize<'de> for LaunchTemplateSpecification
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for LaunchTemplateSpecification
Auto Trait Implementations§
impl Freeze for LaunchTemplateSpecification
impl RefUnwindSafe for LaunchTemplateSpecification
impl Send for LaunchTemplateSpecification
impl Sync for LaunchTemplateSpecification
impl Unpin for LaunchTemplateSpecification
impl UnwindSafe for LaunchTemplateSpecification
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more