pub struct ModifyLaunchTemplateRequest {
pub client_token: Option<String>,
pub default_version: Option<String>,
pub dry_run: Option<bool>,
pub launch_template_id: Option<String>,
pub launch_template_name: Option<String>,
}Fields§
§client_token: Option<String>Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.
Constraint: Maximum 128 ASCII characters.
default_version: Option<String>The version number of the launch template to set as the default version.
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 ModifyLaunchTemplateRequest
impl Clone for ModifyLaunchTemplateRequest
Source§fn clone(&self) -> ModifyLaunchTemplateRequest
fn clone(&self) -> ModifyLaunchTemplateRequest
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 ModifyLaunchTemplateRequest
impl Debug for ModifyLaunchTemplateRequest
Source§impl Default for ModifyLaunchTemplateRequest
impl Default for ModifyLaunchTemplateRequest
Source§fn default() -> ModifyLaunchTemplateRequest
fn default() -> ModifyLaunchTemplateRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ModifyLaunchTemplateRequest
Auto Trait Implementations§
impl Freeze for ModifyLaunchTemplateRequest
impl RefUnwindSafe for ModifyLaunchTemplateRequest
impl Send for ModifyLaunchTemplateRequest
impl Sync for ModifyLaunchTemplateRequest
impl Unpin for ModifyLaunchTemplateRequest
impl UnwindSafe for ModifyLaunchTemplateRequest
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