aws_sdk_databasemigration/client/
delete_replication_subnet_group.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 [`DeleteReplicationSubnetGroup`](crate::operation::delete_replication_subnet_group::builders::DeleteReplicationSubnetGroupFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`replication_subnet_group_identifier(impl Into<String>)`](crate::operation::delete_replication_subnet_group::builders::DeleteReplicationSubnetGroupFluentBuilder::replication_subnet_group_identifier) / [`set_replication_subnet_group_identifier(Option<String>)`](crate::operation::delete_replication_subnet_group::builders::DeleteReplicationSubnetGroupFluentBuilder::set_replication_subnet_group_identifier):<br>required: **true**<br><p>The subnet group name of the replication instance.</p><br>
7    /// - On success, responds with [`DeleteReplicationSubnetGroupOutput`](crate::operation::delete_replication_subnet_group::DeleteReplicationSubnetGroupOutput)
8    /// - On failure, responds with [`SdkError<DeleteReplicationSubnetGroupError>`](crate::operation::delete_replication_subnet_group::DeleteReplicationSubnetGroupError)
9    pub fn delete_replication_subnet_group(
10        &self,
11    ) -> crate::operation::delete_replication_subnet_group::builders::DeleteReplicationSubnetGroupFluentBuilder {
12        crate::operation::delete_replication_subnet_group::builders::DeleteReplicationSubnetGroupFluentBuilder::new(self.handle.clone())
13    }
14}