aws_sdk_controltower/client/delete_landing_zone.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 [`DeleteLandingZone`](crate::operation::delete_landing_zone::builders::DeleteLandingZoneFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`landing_zone_identifier(impl Into<String>)`](crate::operation::delete_landing_zone::builders::DeleteLandingZoneFluentBuilder::landing_zone_identifier) / [`set_landing_zone_identifier(Option<String>)`](crate::operation::delete_landing_zone::builders::DeleteLandingZoneFluentBuilder::set_landing_zone_identifier):<br>required: **true**<br><p>The unique identifier of the landing zone.</p><br>
7 /// - On success, responds with [`DeleteLandingZoneOutput`](crate::operation::delete_landing_zone::DeleteLandingZoneOutput) with field(s):
8 /// - [`operation_identifier(String)`](crate::operation::delete_landing_zone::DeleteLandingZoneOutput::operation_identifier): <p>>A unique identifier assigned to a <code>DeleteLandingZone</code> operation. You can use this identifier as an input parameter of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
9 /// - On failure, responds with [`SdkError<DeleteLandingZoneError>`](crate::operation::delete_landing_zone::DeleteLandingZoneError)
10 pub fn delete_landing_zone(&self) -> crate::operation::delete_landing_zone::builders::DeleteLandingZoneFluentBuilder {
11 crate::operation::delete_landing_zone::builders::DeleteLandingZoneFluentBuilder::new(self.handle.clone())
12 }
13}