aws_sdk_proton/client/
delete_template_sync_config.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 [`DeleteTemplateSyncConfig`](crate::operation::delete_template_sync_config::builders::DeleteTemplateSyncConfigFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`template_name(impl Into<String>)`](crate::operation::delete_template_sync_config::builders::DeleteTemplateSyncConfigFluentBuilder::template_name) / [`set_template_name(Option<String>)`](crate::operation::delete_template_sync_config::builders::DeleteTemplateSyncConfigFluentBuilder::set_template_name):<br>required: **true**<br><p>The template name.</p><br>
7    ///   - [`template_type(TemplateType)`](crate::operation::delete_template_sync_config::builders::DeleteTemplateSyncConfigFluentBuilder::template_type) / [`set_template_type(Option<TemplateType>)`](crate::operation::delete_template_sync_config::builders::DeleteTemplateSyncConfigFluentBuilder::set_template_type):<br>required: **true**<br><p>The template type.</p><br>
8    /// - On success, responds with [`DeleteTemplateSyncConfigOutput`](crate::operation::delete_template_sync_config::DeleteTemplateSyncConfigOutput) with field(s):
9    ///   - [`template_sync_config(Option<TemplateSyncConfig>)`](crate::operation::delete_template_sync_config::DeleteTemplateSyncConfigOutput::template_sync_config): <p>The template sync configuration detail data that's returned by Proton.</p>
10    /// - On failure, responds with [`SdkError<DeleteTemplateSyncConfigError>`](crate::operation::delete_template_sync_config::DeleteTemplateSyncConfigError)
11    pub fn delete_template_sync_config(&self) -> crate::operation::delete_template_sync_config::builders::DeleteTemplateSyncConfigFluentBuilder {
12        crate::operation::delete_template_sync_config::builders::DeleteTemplateSyncConfigFluentBuilder::new(self.handle.clone())
13    }
14}