aws_sdk_controltower/client/get_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 [`GetLandingZone`](crate::operation::get_landing_zone::builders::GetLandingZoneFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`landing_zone_identifier(impl Into<String>)`](crate::operation::get_landing_zone::builders::GetLandingZoneFluentBuilder::landing_zone_identifier) / [`set_landing_zone_identifier(Option<String>)`](crate::operation::get_landing_zone::builders::GetLandingZoneFluentBuilder::set_landing_zone_identifier):<br>required: **true**<br><p>The unique identifier of the landing zone.</p><br>
7 /// - On success, responds with [`GetLandingZoneOutput`](crate::operation::get_landing_zone::GetLandingZoneOutput) with field(s):
8 /// - [`landing_zone(Option<LandingZoneDetail>)`](crate::operation::get_landing_zone::GetLandingZoneOutput::landing_zone): <p>Information about the landing zone.</p>
9 /// - On failure, responds with [`SdkError<GetLandingZoneError>`](crate::operation::get_landing_zone::GetLandingZoneError)
10 pub fn get_landing_zone(&self) -> crate::operation::get_landing_zone::builders::GetLandingZoneFluentBuilder {
11 crate::operation::get_landing_zone::builders::GetLandingZoneFluentBuilder::new(self.handle.clone())
12 }
13}