aws_sdk_quicksight/client/
list_self_upgrades.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 [`ListSelfUpgrades`](crate::operation::list_self_upgrades::builders::ListSelfUpgradesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::list_self_upgrades::builders::ListSelfUpgradesFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::list_self_upgrades::builders::ListSelfUpgradesFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the self-upgrade requests.</p><br>
7    ///   - [`namespace(impl Into<String>)`](crate::operation::list_self_upgrades::builders::ListSelfUpgradesFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::list_self_upgrades::builders::ListSelfUpgradesFluentBuilder::set_namespace):<br>required: **true**<br><p>The Quick Suite namespace for the self-upgrade requests.</p><br>
8    ///   - [`next_token(impl Into<String>)`](crate::operation::list_self_upgrades::builders::ListSelfUpgradesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_self_upgrades::builders::ListSelfUpgradesFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results, or null if there are no more results.</p><br>
9    ///   - [`max_results(i32)`](crate::operation::list_self_upgrades::builders::ListSelfUpgradesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_self_upgrades::builders::ListSelfUpgradesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return.</p><br>
10    /// - On success, responds with [`ListSelfUpgradesOutput`](crate::operation::list_self_upgrades::ListSelfUpgradesOutput) with field(s):
11    ///   - [`self_upgrade_request_details(Option<Vec::<SelfUpgradeRequestDetail>>)`](crate::operation::list_self_upgrades::ListSelfUpgradesOutput::self_upgrade_request_details): <p>A list of self-upgrade request details.</p>
12    ///   - [`next_token(Option<String>)`](crate::operation::list_self_upgrades::ListSelfUpgradesOutput::next_token): <p>The token for the next set of results, or null if there are no more results.</p>
13    ///   - [`request_id(Option<String>)`](crate::operation::list_self_upgrades::ListSelfUpgradesOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
14    ///   - [`status(i32)`](crate::operation::list_self_upgrades::ListSelfUpgradesOutput::status): <p>The HTTP status of the request.</p>
15    /// - On failure, responds with [`SdkError<ListSelfUpgradesError>`](crate::operation::list_self_upgrades::ListSelfUpgradesError)
16    pub fn list_self_upgrades(&self) -> crate::operation::list_self_upgrades::builders::ListSelfUpgradesFluentBuilder {
17        crate::operation::list_self_upgrades::builders::ListSelfUpgradesFluentBuilder::new(self.handle.clone())
18    }
19}