aws_sdk_opsworks/client/
deregister_elastic_ip.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 [`DeregisterElasticIp`](crate::operation::deregister_elastic_ip::builders::DeregisterElasticIpFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`elastic_ip(impl Into<String>)`](crate::operation::deregister_elastic_ip::builders::DeregisterElasticIpFluentBuilder::elastic_ip) / [`set_elastic_ip(Option<String>)`](crate::operation::deregister_elastic_ip::builders::DeregisterElasticIpFluentBuilder::set_elastic_ip):<br>required: **true**<br><p>The Elastic IP address.</p><br>
7    /// - On success, responds with [`DeregisterElasticIpOutput`](crate::operation::deregister_elastic_ip::DeregisterElasticIpOutput)
8    /// - On failure, responds with [`SdkError<DeregisterElasticIpError>`](crate::operation::deregister_elastic_ip::DeregisterElasticIpError)
9    pub fn deregister_elastic_ip(&self) -> crate::operation::deregister_elastic_ip::builders::DeregisterElasticIpFluentBuilder {
10        crate::operation::deregister_elastic_ip::builders::DeregisterElasticIpFluentBuilder::new(self.handle.clone())
11    }
12}