aws_sdk_proton/client/get_service_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 [`GetServiceSyncConfig`](crate::operation::get_service_sync_config::builders::GetServiceSyncConfigFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`service_name(impl Into<String>)`](crate::operation::get_service_sync_config::builders::GetServiceSyncConfigFluentBuilder::service_name) / [`set_service_name(Option<String>)`](crate::operation::get_service_sync_config::builders::GetServiceSyncConfigFluentBuilder::set_service_name):<br>required: **true**<br><p>The name of the service that you want to get the service sync configuration for.</p><br>
7 /// - On success, responds with [`GetServiceSyncConfigOutput`](crate::operation::get_service_sync_config::GetServiceSyncConfigOutput) with field(s):
8 /// - [`service_sync_config(Option<ServiceSyncConfig>)`](crate::operation::get_service_sync_config::GetServiceSyncConfigOutput::service_sync_config): <p>The detailed data of the requested service sync configuration.</p>
9 /// - On failure, responds with [`SdkError<GetServiceSyncConfigError>`](crate::operation::get_service_sync_config::GetServiceSyncConfigError)
10 pub fn get_service_sync_config(&self) -> crate::operation::get_service_sync_config::builders::GetServiceSyncConfigFluentBuilder {
11 crate::operation::get_service_sync_config::builders::GetServiceSyncConfigFluentBuilder::new(self.handle.clone())
12 }
13}