aws_sdk_deadline/client/
list_monitors.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListMonitors`](crate::operation::list_monitors::builders::ListMonitorsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_monitors::builders::ListMonitorsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_monitors::builders::ListMonitorsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_monitors::builders::ListMonitorsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results, or <code>null</code> to start from the beginning.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_monitors::builders::ListMonitorsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_monitors::builders::ListMonitorsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p><br>
    /// - On success, responds with [`ListMonitorsOutput`](crate::operation::list_monitors::ListMonitorsOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::list_monitors::ListMonitorsOutput::next_token): <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
    ///   - [`monitors(Vec::<MonitorSummary>)`](crate::operation::list_monitors::ListMonitorsOutput::monitors): <p>A list of <code>MonitorSummary</code> objects that describe your monitors in the Deadline Cloud.</p>
    /// - On failure, responds with [`SdkError<ListMonitorsError>`](crate::operation::list_monitors::ListMonitorsError)
    pub fn list_monitors(&self) -> crate::operation::list_monitors::builders::ListMonitorsFluentBuilder {
        crate::operation::list_monitors::builders::ListMonitorsFluentBuilder::new(self.handle.clone())
    }
}