#[non_exhaustive]pub struct DeleteLaunchTemplateVersionsResponseErrorItem {
pub launch_template_id: Option<String>,
pub launch_template_name: Option<String>,
pub version_number: Option<i64>,
pub response_error: Option<ResponseError>,
}
Expand description
Describes a launch template version that could not be deleted.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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 of the launch template.
response_error: Option<ResponseError>
Information about the error.
Implementations§
source§impl DeleteLaunchTemplateVersionsResponseErrorItem
impl DeleteLaunchTemplateVersionsResponseErrorItem
sourcepub fn launch_template_id(&self) -> Option<&str>
pub fn launch_template_id(&self) -> Option<&str>
The ID of the launch template.
sourcepub fn launch_template_name(&self) -> Option<&str>
pub fn launch_template_name(&self) -> Option<&str>
The name of the launch template.
sourcepub fn version_number(&self) -> Option<i64>
pub fn version_number(&self) -> Option<i64>
The version number of the launch template.
sourcepub fn response_error(&self) -> Option<&ResponseError>
pub fn response_error(&self) -> Option<&ResponseError>
Information about the error.
source§impl DeleteLaunchTemplateVersionsResponseErrorItem
impl DeleteLaunchTemplateVersionsResponseErrorItem
sourcepub fn builder() -> DeleteLaunchTemplateVersionsResponseErrorItemBuilder
pub fn builder() -> DeleteLaunchTemplateVersionsResponseErrorItemBuilder
Creates a new builder-style object to manufacture DeleteLaunchTemplateVersionsResponseErrorItem
.
Trait Implementations§
source§impl Clone for DeleteLaunchTemplateVersionsResponseErrorItem
impl Clone for DeleteLaunchTemplateVersionsResponseErrorItem
source§fn clone(&self) -> DeleteLaunchTemplateVersionsResponseErrorItem
fn clone(&self) -> DeleteLaunchTemplateVersionsResponseErrorItem
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 PartialEq<DeleteLaunchTemplateVersionsResponseErrorItem> for DeleteLaunchTemplateVersionsResponseErrorItem
impl PartialEq<DeleteLaunchTemplateVersionsResponseErrorItem> for DeleteLaunchTemplateVersionsResponseErrorItem
source§fn eq(&self, other: &DeleteLaunchTemplateVersionsResponseErrorItem) -> bool
fn eq(&self, other: &DeleteLaunchTemplateVersionsResponseErrorItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteLaunchTemplateVersionsResponseErrorItem
Auto Trait Implementations§
impl RefUnwindSafe for DeleteLaunchTemplateVersionsResponseErrorItem
impl Send for DeleteLaunchTemplateVersionsResponseErrorItem
impl Sync for DeleteLaunchTemplateVersionsResponseErrorItem
impl Unpin for DeleteLaunchTemplateVersionsResponseErrorItem
impl UnwindSafe for DeleteLaunchTemplateVersionsResponseErrorItem
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