aws_sdk_deadline/client/
list_workers.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListWorkers`](crate::operation::list_workers::builders::ListWorkersFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_workers::builders::ListWorkersFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`farm_id(impl Into<String>)`](crate::operation::list_workers::builders::ListWorkersFluentBuilder::farm_id) / [`set_farm_id(Option<String>)`](crate::operation::list_workers::builders::ListWorkersFluentBuilder::set_farm_id):<br>required: **true**<br><p>The farm ID connected to the workers.</p><br>
    ///   - [`fleet_id(impl Into<String>)`](crate::operation::list_workers::builders::ListWorkersFluentBuilder::fleet_id) / [`set_fleet_id(Option<String>)`](crate::operation::list_workers::builders::ListWorkersFluentBuilder::set_fleet_id):<br>required: **true**<br><p>The fleet ID of the workers.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_workers::builders::ListWorkersFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_workers::builders::ListWorkersFluentBuilder::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_workers::builders::ListWorkersFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_workers::builders::ListWorkersFluentBuilder::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 [`ListWorkersOutput`](crate::operation::list_workers::ListWorkersOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::list_workers::ListWorkersOutput::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>
    ///   - [`workers(Vec::<WorkerSummary>)`](crate::operation::list_workers::ListWorkersOutput::workers): <p>The workers on the list.</p>
    /// - On failure, responds with [`SdkError<ListWorkersError>`](crate::operation::list_workers::ListWorkersError)
    pub fn list_workers(&self) -> crate::operation::list_workers::builders::ListWorkersFluentBuilder {
        crate::operation::list_workers::builders::ListWorkersFluentBuilder::new(self.handle.clone())
    }
}