aws_sdk_controltower/client/
reset_landing_zone.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ResetLandingZone`](crate::operation::reset_landing_zone::builders::ResetLandingZoneFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    /// - On success, responds with [`ResetLandingZoneOutput`](crate::operation::reset_landing_zone::ResetLandingZoneOutput) with field(s):
    ///   - [`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>
    /// - On failure, responds with [`SdkError<ResetLandingZoneError>`](crate::operation::reset_landing_zone::ResetLandingZoneError)
    pub fn reset_landing_zone(&self) -> crate::operation::reset_landing_zone::builders::ResetLandingZoneFluentBuilder {
        crate::operation::reset_landing_zone::builders::ResetLandingZoneFluentBuilder::new(self.handle.clone())
    }
}