aws_sdk_controltower/client/
list_landing_zone_operations.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListLandingZoneOperations`](crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`ListLandingZoneOperationsOutput`](crate::operation::list_landing_zone_operations::ListLandingZoneOperationsOutput) with field(s):
    ///   - [`landing_zone_operations(Vec::<LandingZoneOperationSummary>)`](crate::operation::list_landing_zone_operations::ListLandingZoneOperationsOutput::landing_zone_operations): <p>Lists landing zone operations.</p>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<ListLandingZoneOperationsError>`](crate::operation::list_landing_zone_operations::ListLandingZoneOperationsError)
    pub fn list_landing_zone_operations(&self) -> crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder {
        crate::operation::list_landing_zone_operations::builders::ListLandingZoneOperationsFluentBuilder::new(self.handle.clone())
    }
}