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