pub struct DeleteLaunchTemplateVersionsRequest {
pub dry_run: Option<bool>,
pub launch_template_id: Option<String>,
pub launch_template_name: Option<String>,
pub versions: Vec<String>,
}Fields§
§dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
launch_template_id: Option<String>The ID of the launch template. You must specify either the launch template ID or launch template name in the request.
launch_template_name: Option<String>The name of the launch template. You must specify either the launch template ID or launch template name in the request.
versions: Vec<String>The version numbers of one or more launch template versions to delete.
Trait Implementations§
Source§impl Clone for DeleteLaunchTemplateVersionsRequest
impl Clone for DeleteLaunchTemplateVersionsRequest
Source§fn clone(&self) -> DeleteLaunchTemplateVersionsRequest
fn clone(&self) -> DeleteLaunchTemplateVersionsRequest
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 Default for DeleteLaunchTemplateVersionsRequest
impl Default for DeleteLaunchTemplateVersionsRequest
Source§fn default() -> DeleteLaunchTemplateVersionsRequest
fn default() -> DeleteLaunchTemplateVersionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteLaunchTemplateVersionsRequest
impl PartialEq for DeleteLaunchTemplateVersionsRequest
Source§fn eq(&self, other: &DeleteLaunchTemplateVersionsRequest) -> bool
fn eq(&self, other: &DeleteLaunchTemplateVersionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteLaunchTemplateVersionsRequest
Auto Trait Implementations§
impl Freeze for DeleteLaunchTemplateVersionsRequest
impl RefUnwindSafe for DeleteLaunchTemplateVersionsRequest
impl Send for DeleteLaunchTemplateVersionsRequest
impl Sync for DeleteLaunchTemplateVersionsRequest
impl Unpin for DeleteLaunchTemplateVersionsRequest
impl UnwindSafe for DeleteLaunchTemplateVersionsRequest
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