aws-sdk-odb 1.28.0

AWS SDK for odb
Documentation
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 [`ListCloudVmClusters`](crate::operation::list_cloud_vm_clusters::builders::ListCloudVmClustersFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_cloud_vm_clusters::builders::ListCloudVmClustersFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_results(i32)`](crate::operation::list_cloud_vm_clusters::builders::ListCloudVmClustersFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_cloud_vm_clusters::builders::ListCloudVmClustersFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output.</p> <p>Default: <code>10</code></p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_cloud_vm_clusters::builders::ListCloudVmClustersFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_cloud_vm_clusters::builders::ListCloudVmClustersFluentBuilder::set_next_token):<br>required: **false**<br><p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p><br>
    ///   - [`cloud_exadata_infrastructure_id(impl Into<String>)`](crate::operation::list_cloud_vm_clusters::builders::ListCloudVmClustersFluentBuilder::cloud_exadata_infrastructure_id) / [`set_cloud_exadata_infrastructure_id(Option<String>)`](crate::operation::list_cloud_vm_clusters::builders::ListCloudVmClustersFluentBuilder::set_cloud_exadata_infrastructure_id):<br>required: **false**<br><p>The unique identifier of the Oracle Exadata infrastructure.</p><br>
    /// - On success, responds with [`ListCloudVmClustersOutput`](crate::operation::list_cloud_vm_clusters::ListCloudVmClustersOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::list_cloud_vm_clusters::ListCloudVmClustersOutput::next_token): <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there are no more items to return.</p>
    ///   - [`cloud_vm_clusters(Vec::<CloudVmClusterSummary>)`](crate::operation::list_cloud_vm_clusters::ListCloudVmClustersOutput::cloud_vm_clusters): <p>The list of VM clusters along with their properties.</p>
    /// - On failure, responds with [`SdkError<ListCloudVmClustersError>`](crate::operation::list_cloud_vm_clusters::ListCloudVmClustersError)
    pub fn list_cloud_vm_clusters(&self) -> crate::operation::list_cloud_vm_clusters::builders::ListCloudVmClustersFluentBuilder {
        crate::operation::list_cloud_vm_clusters::builders::ListCloudVmClustersFluentBuilder::new(self.handle.clone())
    }
}