Struct aws_sdk_ec2::model::LaunchTemplateVersion [−][src]
#[non_exhaustive]pub struct LaunchTemplateVersion {
pub launch_template_id: Option<String>,
pub launch_template_name: Option<String>,
pub version_number: Option<i64>,
pub version_description: Option<String>,
pub create_time: Option<DateTime>,
pub created_by: Option<String>,
pub default_version: Option<bool>,
pub launch_template_data: Option<ResponseLaunchTemplateData>,
}
Expand description
Describes a launch template version.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.launch_template_id: Option<String>
The ID of the launch template.
launch_template_name: Option<String>
The name of the launch template.
version_number: Option<i64>
The version number.
version_description: Option<String>
The description for the version.
create_time: Option<DateTime>
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.
Implementations
The ID of the launch template.
The name of the launch template.
The version number.
The description for the version.
The time the version was created.
The principal that created the version.
Indicates whether the version is the default version.
Information about the launch template.
Creates a new builder-style object to manufacture LaunchTemplateVersion
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for LaunchTemplateVersion
impl Send for LaunchTemplateVersion
impl Sync for LaunchTemplateVersion
impl Unpin for LaunchTemplateVersion
impl UnwindSafe for LaunchTemplateVersion
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more