aws_sdk_controltower/client/reset_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 [`ResetLandingZone`](crate::operation::reset_landing_zone::builders::ResetLandingZoneFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`landing_zone_identifier(impl Into<String>)`](crate::operation::reset_landing_zone::builders::ResetLandingZoneFluentBuilder::landing_zone_identifier) / [`set_landing_zone_identifier(Option<String>)`](crate::operation::reset_landing_zone::builders::ResetLandingZoneFluentBuilder::set_landing_zone_identifier):<br>required: **true**<br><p>The unique identifier of the landing zone.</p><br>
7    /// - On success, responds with [`ResetLandingZoneOutput`](crate::operation::reset_landing_zone::ResetLandingZoneOutput) with field(s):
8    ///   - [`operation_identifier(String)`](crate::operation::reset_landing_zone::ResetLandingZoneOutput::operation_identifier): <p>A unique identifier assigned to a <code>ResetLandingZone</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<ResetLandingZoneError>`](crate::operation::reset_landing_zone::ResetLandingZoneError)
10    pub fn reset_landing_zone(&self) -> crate::operation::reset_landing_zone::builders::ResetLandingZoneFluentBuilder {
11        crate::operation::reset_landing_zone::builders::ResetLandingZoneFluentBuilder::new(self.handle.clone())
12    }
13}