aws_sdk_controltower/client/
list_landing_zone_operations.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 [`ListLandingZoneOperations`](crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`filter(LandingZoneOperationFilter)`](crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder::filter) / [`set_filter(Option<LandingZoneOperationFilter>)`](crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder::set_filter):<br>required: **false**<br><p>An input filter for the <code>ListLandingZoneOperations</code> API that lets you select the types of landing zone operations to view.</p><br>
8    ///   - [`next_token(impl Into<String>)`](crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token to continue the list from a previous API call with the same parameters.</p><br>
9    ///   - [`max_results(i32)`](crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder::set_max_results):<br>required: **false**<br><p>How many results to return per API call.</p><br>
10    /// - On success, responds with [`ListLandingZoneOperationsOutput`](crate::operation::list_landing_zone_operations::ListLandingZoneOperationsOutput) with field(s):
11    ///   - [`landing_zone_operations(Vec::<LandingZoneOperationSummary>)`](crate::operation::list_landing_zone_operations::ListLandingZoneOperationsOutput::landing_zone_operations): <p>Lists landing zone operations.</p>
12    ///   - [`next_token(Option<String>)`](crate::operation::list_landing_zone_operations::ListLandingZoneOperationsOutput::next_token): <p>Retrieves the next page of results. If the string is empty, the response is the end of the results.</p>
13    /// - On failure, responds with [`SdkError<ListLandingZoneOperationsError>`](crate::operation::list_landing_zone_operations::ListLandingZoneOperationsError)
14    pub fn list_landing_zone_operations(&self) -> crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder {
15        crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder::new(self.handle.clone())
16    }
17}