pub struct LaunchTemplateVersion {
pub create_time: Option<String>,
pub created_by: Option<String>,
pub default_version: Option<bool>,
pub launch_template_data: Option<ResponseLaunchTemplateData>,
pub launch_template_id: Option<String>,
pub launch_template_name: Option<String>,
pub version_description: Option<String>,
pub version_number: Option<i64>,
}
Expand description
Describes a launch template version.
Fields§
§create_time: Option<String>
The time the version was created.
created_by: Option<String>
The principal that created the version.
default_version: Option<bool>
Indicates whether the version is the default version.
launch_template_data: Option<ResponseLaunchTemplateData>
Information about the launch template.
launch_template_id: Option<String>
The ID of the launch template.
launch_template_name: Option<String>
The name of the launch template.
version_description: Option<String>
The description for the version.
version_number: Option<i64>
The version number.
Trait Implementations§
Source§impl Clone for LaunchTemplateVersion
impl Clone for LaunchTemplateVersion
Source§fn clone(&self) -> LaunchTemplateVersion
fn clone(&self) -> LaunchTemplateVersion
Returns a duplicate 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 LaunchTemplateVersion
impl Debug for LaunchTemplateVersion
Source§impl Default for LaunchTemplateVersion
impl Default for LaunchTemplateVersion
Source§fn default() -> LaunchTemplateVersion
fn default() -> LaunchTemplateVersion
Returns the “default value” for a type. Read more
Source§impl PartialEq for LaunchTemplateVersion
impl PartialEq for LaunchTemplateVersion
impl StructuralPartialEq for LaunchTemplateVersion
Auto Trait Implementations§
impl Freeze for LaunchTemplateVersion
impl RefUnwindSafe for LaunchTemplateVersion
impl Send for LaunchTemplateVersion
impl Sync for LaunchTemplateVersion
impl Unpin for LaunchTemplateVersion
impl UnwindSafe for LaunchTemplateVersion
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