aws_sdk_controltower/client/
update_landing_zone.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateLandingZone`](crate::operation::update_landing_zone::builders::UpdateLandingZoneFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`version(impl Into<String>)`](crate::operation::update_landing_zone::builders::UpdateLandingZoneFluentBuilder::version) / [`set_version(Option<String>)`](crate::operation::update_landing_zone::builders::UpdateLandingZoneFluentBuilder::set_version):<br>required: **true**<br><p>The landing zone version, for example, 3.2.</p><br>
    ///   - [`manifest(Document)`](crate::operation::update_landing_zone::builders::UpdateLandingZoneFluentBuilder::manifest) / [`set_manifest(Option<Document>)`](crate::operation::update_landing_zone::builders::UpdateLandingZoneFluentBuilder::set_manifest):<br>required: **true**<br><p>The manifest file (JSON) is a text file that describes your Amazon Web Services resources. For an example, review <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch">Launch your landing zone</a>. The example manifest file contains each of the available parameters. The schema for the landing zone's JSON manifest file is not published, by design.</p><br>
    ///   - [`landing_zone_identifier(impl Into<String>)`](crate::operation::update_landing_zone::builders::UpdateLandingZoneFluentBuilder::landing_zone_identifier) / [`set_landing_zone_identifier(Option<String>)`](crate::operation::update_landing_zone::builders::UpdateLandingZoneFluentBuilder::set_landing_zone_identifier):<br>required: **true**<br><p>The unique identifier of the landing zone.</p><br>
    /// - On success, responds with [`UpdateLandingZoneOutput`](crate::operation::update_landing_zone::UpdateLandingZoneOutput) with field(s):
    ///   - [`operation_identifier(String)`](crate::operation::update_landing_zone::UpdateLandingZoneOutput::operation_identifier): <p>A unique identifier assigned to a <code>UpdateLandingZone</code> operation. You can use this identifier as an input of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
    /// - On failure, responds with [`SdkError<UpdateLandingZoneError>`](crate::operation::update_landing_zone::UpdateLandingZoneError)
    pub fn update_landing_zone(&self) -> crate::operation::update_landing_zone::builders::UpdateLandingZoneFluentBuilder {
        crate::operation::update_landing_zone::builders::UpdateLandingZoneFluentBuilder::new(self.handle.clone())
    }
}