aws_sdk_redshiftserverless/client/
delete_snapshot_copy_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 [`DeleteSnapshotCopyConfiguration`](crate::operation::delete_snapshot_copy_configuration::builders::DeleteSnapshotCopyConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`snapshot_copy_configuration_id(impl Into<String>)`](crate::operation::delete_snapshot_copy_configuration::builders::DeleteSnapshotCopyConfigurationFluentBuilder::snapshot_copy_configuration_id) / [`set_snapshot_copy_configuration_id(Option<String>)`](crate::operation::delete_snapshot_copy_configuration::builders::DeleteSnapshotCopyConfigurationFluentBuilder::set_snapshot_copy_configuration_id):<br>required: **true**<br><p>The ID of the snapshot copy configuration to delete.</p><br>
7    /// - On success, responds with [`DeleteSnapshotCopyConfigurationOutput`](crate::operation::delete_snapshot_copy_configuration::DeleteSnapshotCopyConfigurationOutput) with field(s):
8    ///   - [`snapshot_copy_configuration(Option<SnapshotCopyConfiguration>)`](crate::operation::delete_snapshot_copy_configuration::DeleteSnapshotCopyConfigurationOutput::snapshot_copy_configuration): <p>The deleted snapshot copy configuration object.</p>
9    /// - On failure, responds with [`SdkError<DeleteSnapshotCopyConfigurationError>`](crate::operation::delete_snapshot_copy_configuration::DeleteSnapshotCopyConfigurationError)
10    pub fn delete_snapshot_copy_configuration(
11        &self,
12    ) -> crate::operation::delete_snapshot_copy_configuration::builders::DeleteSnapshotCopyConfigurationFluentBuilder {
13        crate::operation::delete_snapshot_copy_configuration::builders::DeleteSnapshotCopyConfigurationFluentBuilder::new(self.handle.clone())
14    }
15}