aws_sdk_deadline/client/list_farm_members.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListFarmMembers`](crate::operation::list_farm_members::builders::ListFarmMembersFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_farm_members::builders::ListFarmMembersFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`farm_id(impl Into<String>)`](crate::operation::list_farm_members::builders::ListFarmMembersFluentBuilder::farm_id) / [`set_farm_id(Option<String>)`](crate::operation::list_farm_members::builders::ListFarmMembersFluentBuilder::set_farm_id):<br>required: **true**<br><p>The farm ID.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_farm_members::builders::ListFarmMembersFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_farm_members::builders::ListFarmMembersFluentBuilder::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_farm_members::builders::ListFarmMembersFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_farm_members::builders::ListFarmMembersFluentBuilder::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 [`ListFarmMembersOutput`](crate::operation::list_farm_members::ListFarmMembersOutput) with field(s):
/// - [`members(Vec::<FarmMember>)`](crate::operation::list_farm_members::ListFarmMembersOutput::members): <p>The members on the list.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_farm_members::ListFarmMembersOutput::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>
/// - On failure, responds with [`SdkError<ListFarmMembersError>`](crate::operation::list_farm_members::ListFarmMembersError)
pub fn list_farm_members(&self) -> crate::operation::list_farm_members::builders::ListFarmMembersFluentBuilder {
crate::operation::list_farm_members::builders::ListFarmMembersFluentBuilder::new(self.handle.clone())
}
}