aws_sdk_sesv2/client/delete_dedicated_ip_pool.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 [`DeleteDedicatedIpPool`](crate::operation::delete_dedicated_ip_pool::builders::DeleteDedicatedIpPoolFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`pool_name(impl Into<String>)`](crate::operation::delete_dedicated_ip_pool::builders::DeleteDedicatedIpPoolFluentBuilder::pool_name) / [`set_pool_name(Option<String>)`](crate::operation::delete_dedicated_ip_pool::builders::DeleteDedicatedIpPoolFluentBuilder::set_pool_name):<br>required: **true**<br><p>The name of the dedicated IP pool that you want to delete.</p><br>
7 /// - On success, responds with [`DeleteDedicatedIpPoolOutput`](crate::operation::delete_dedicated_ip_pool::DeleteDedicatedIpPoolOutput)
8 /// - On failure, responds with [`SdkError<DeleteDedicatedIpPoolError>`](crate::operation::delete_dedicated_ip_pool::DeleteDedicatedIpPoolError)
9 pub fn delete_dedicated_ip_pool(&self) -> crate::operation::delete_dedicated_ip_pool::builders::DeleteDedicatedIpPoolFluentBuilder {
10 crate::operation::delete_dedicated_ip_pool::builders::DeleteDedicatedIpPoolFluentBuilder::new(self.handle.clone())
11 }
12}