aws_sdk_codestarconnections/client/delete_sync_configuration.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 [`DeleteSyncConfiguration`](crate::operation::delete_sync_configuration::builders::DeleteSyncConfigurationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`sync_type(SyncConfigurationType)`](crate::operation::delete_sync_configuration::builders::DeleteSyncConfigurationFluentBuilder::sync_type) / [`set_sync_type(Option<SyncConfigurationType>)`](crate::operation::delete_sync_configuration::builders::DeleteSyncConfigurationFluentBuilder::set_sync_type):<br>required: **true**<br><p>The type of sync configuration to be deleted.</p><br>
7 /// - [`resource_name(impl Into<String>)`](crate::operation::delete_sync_configuration::builders::DeleteSyncConfigurationFluentBuilder::resource_name) / [`set_resource_name(Option<String>)`](crate::operation::delete_sync_configuration::builders::DeleteSyncConfigurationFluentBuilder::set_resource_name):<br>required: **true**<br><p>The name of the Amazon Web Services resource associated with the sync configuration to be deleted.</p><br>
8 /// - On success, responds with [`DeleteSyncConfigurationOutput`](crate::operation::delete_sync_configuration::DeleteSyncConfigurationOutput)
9 /// - On failure, responds with [`SdkError<DeleteSyncConfigurationError>`](crate::operation::delete_sync_configuration::DeleteSyncConfigurationError)
10 pub fn delete_sync_configuration(&self) -> crate::operation::delete_sync_configuration::builders::DeleteSyncConfigurationFluentBuilder {
11 crate::operation::delete_sync_configuration::builders::DeleteSyncConfigurationFluentBuilder::new(self.handle.clone())
12 }
13}