aws_sdk_ec2/client/modify_launch_template.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`ModifyLaunchTemplate`](crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`dry_run(bool)`](crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder::set_dry_run):<br>required: **false**<br><p>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 <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p><br>
7 /// - [`client_token(impl Into<String>)`](crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder::set_client_token):<br>required: **false**<br><p>Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If a client token isn't specified, a randomly generated token is used in the request to ensure idempotency.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring idempotency</a>.</p> <p>Constraint: Maximum 128 ASCII characters.</p><br>
8 /// - [`launch_template_id(impl Into<String>)`](crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder::launch_template_id) / [`set_launch_template_id(Option<String>)`](crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder::set_launch_template_id):<br>required: **false**<br><p>The ID of the launch template.</p> <p>You must specify either the launch template ID or the launch template name, but not both.</p><br>
9 /// - [`launch_template_name(impl Into<String>)`](crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder::launch_template_name) / [`set_launch_template_name(Option<String>)`](crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder::set_launch_template_name):<br>required: **false**<br><p>The name of the launch template.</p> <p>You must specify either the launch template ID or the launch template name, but not both.</p><br>
10 /// - [`default_version(impl Into<String>)`](crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder::default_version) / [`set_default_version(Option<String>)`](crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder::set_default_version):<br>required: **false**<br><p>The version number of the launch template to set as the default version.</p><br>
11 /// - On success, responds with [`ModifyLaunchTemplateOutput`](crate::operation::modify_launch_template::ModifyLaunchTemplateOutput) with field(s):
12 /// - [`launch_template(Option<LaunchTemplate>)`](crate::operation::modify_launch_template::ModifyLaunchTemplateOutput::launch_template): <p>Information about the launch template.</p>
13 /// - On failure, responds with [`SdkError<ModifyLaunchTemplateError>`](crate::operation::modify_launch_template::ModifyLaunchTemplateError)
14 pub fn modify_launch_template(&self) -> crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder {
15 crate::operation::modify_launch_template::builders::ModifyLaunchTemplateFluentBuilder::new(self.handle.clone())
16 }
17}