aws_sdk_lightsail/client/
detach_static_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 [`DetachStaticIp`](crate::operation::detach_static_ip::builders::DetachStaticIpFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`static_ip_name(impl Into<String>)`](crate::operation::detach_static_ip::builders::DetachStaticIpFluentBuilder::static_ip_name) / [`set_static_ip_name(Option<String>)`](crate::operation::detach_static_ip::builders::DetachStaticIpFluentBuilder::set_static_ip_name):<br>required: **true**<br><p>The name of the static IP to detach from the instance.</p><br>
7    /// - On success, responds with [`DetachStaticIpOutput`](crate::operation::detach_static_ip::DetachStaticIpOutput) with field(s):
8    ///   - [`operations(Option<Vec::<Operation>>)`](crate::operation::detach_static_ip::DetachStaticIpOutput::operations): <p>An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.</p>
9    /// - On failure, responds with [`SdkError<DetachStaticIpError>`](crate::operation::detach_static_ip::DetachStaticIpError)
10    pub fn detach_static_ip(&self) -> crate::operation::detach_static_ip::builders::DetachStaticIpFluentBuilder {
11        crate::operation::detach_static_ip::builders::DetachStaticIpFluentBuilder::new(self.handle.clone())
12    }
13}