pub struct DeleteLaunchTemplateRequest {
pub dry_run: Option<bool>,
pub launch_template_id: Option<String>,
pub launch_template_name: Option<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.
Trait Implementations§
Source§impl Clone for DeleteLaunchTemplateRequest
impl Clone for DeleteLaunchTemplateRequest
Source§fn clone(&self) -> DeleteLaunchTemplateRequest
fn clone(&self) -> DeleteLaunchTemplateRequest
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 DeleteLaunchTemplateRequest
impl Debug for DeleteLaunchTemplateRequest
Source§impl Default for DeleteLaunchTemplateRequest
impl Default for DeleteLaunchTemplateRequest
Source§fn default() -> DeleteLaunchTemplateRequest
fn default() -> DeleteLaunchTemplateRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DeleteLaunchTemplateRequest
Auto Trait Implementations§
impl Freeze for DeleteLaunchTemplateRequest
impl RefUnwindSafe for DeleteLaunchTemplateRequest
impl Send for DeleteLaunchTemplateRequest
impl Sync for DeleteLaunchTemplateRequest
impl Unpin for DeleteLaunchTemplateRequest
impl UnwindSafe for DeleteLaunchTemplateRequest
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