// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteServiceTemplateVersion`](crate::operation::delete_service_template_version::builders::DeleteServiceTemplateVersionFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`template_name(impl Into<String>)`](crate::operation::delete_service_template_version::builders::DeleteServiceTemplateVersionFluentBuilder::template_name) / [`set_template_name(Option<String>)`](crate::operation::delete_service_template_version::builders::DeleteServiceTemplateVersionFluentBuilder::set_template_name):<br>required: **true**<br><p>The name of the service template.</p><br>
/// - [`major_version(impl Into<String>)`](crate::operation::delete_service_template_version::builders::DeleteServiceTemplateVersionFluentBuilder::major_version) / [`set_major_version(Option<String>)`](crate::operation::delete_service_template_version::builders::DeleteServiceTemplateVersionFluentBuilder::set_major_version):<br>required: **true**<br><p>The service template major version to delete.</p><br>
/// - [`minor_version(impl Into<String>)`](crate::operation::delete_service_template_version::builders::DeleteServiceTemplateVersionFluentBuilder::minor_version) / [`set_minor_version(Option<String>)`](crate::operation::delete_service_template_version::builders::DeleteServiceTemplateVersionFluentBuilder::set_minor_version):<br>required: **true**<br><p>The service template minor version to delete.</p><br>
/// - On success, responds with [`DeleteServiceTemplateVersionOutput`](crate::operation::delete_service_template_version::DeleteServiceTemplateVersionOutput) with field(s):
/// - [`service_template_version(Option<ServiceTemplateVersion>)`](crate::operation::delete_service_template_version::DeleteServiceTemplateVersionOutput::service_template_version): <p>The detailed data of the service template version being deleted.</p>
/// - On failure, responds with [`SdkError<DeleteServiceTemplateVersionError>`](crate::operation::delete_service_template_version::DeleteServiceTemplateVersionError)
pub fn delete_service_template_version(
&self,
) -> crate::operation::delete_service_template_version::builders::DeleteServiceTemplateVersionFluentBuilder {
crate::operation::delete_service_template_version::builders::DeleteServiceTemplateVersionFluentBuilder::new(self.handle.clone())
}
}