aws_sdk_codestarconnections/client/
delete_sync_configuration.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteSyncConfiguration`](crate::operation::delete_sync_configuration::builders::DeleteSyncConfigurationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`DeleteSyncConfigurationOutput`](crate::operation::delete_sync_configuration::DeleteSyncConfigurationOutput)
    /// - On failure, responds with [`SdkError<DeleteSyncConfigurationError>`](crate::operation::delete_sync_configuration::DeleteSyncConfigurationError)
    pub fn delete_sync_configuration(&self) -> crate::operation::delete_sync_configuration::builders::DeleteSyncConfigurationFluentBuilder {
        crate::operation::delete_sync_configuration::builders::DeleteSyncConfigurationFluentBuilder::new(self.handle.clone())
    }
}