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