pub struct ListNodesRequest {
pub cluster_arn: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§cluster_arn: String <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
max_results: Option<i64> <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
next_token: Option<String> <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
To get the next batch, provide this token in your next request.</p>
Trait Implementations§
Source§impl Clone for ListNodesRequest
impl Clone for ListNodesRequest
Source§fn clone(&self) -> ListNodesRequest
fn clone(&self) -> ListNodesRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListNodesRequest
impl Debug for ListNodesRequest
Source§impl Default for ListNodesRequest
impl Default for ListNodesRequest
Source§fn default() -> ListNodesRequest
fn default() -> ListNodesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListNodesRequest
impl PartialEq for ListNodesRequest
Source§impl Serialize for ListNodesRequest
impl Serialize for ListNodesRequest
impl StructuralPartialEq for ListNodesRequest
Auto Trait Implementations§
impl Freeze for ListNodesRequest
impl RefUnwindSafe for ListNodesRequest
impl Send for ListNodesRequest
impl Sync for ListNodesRequest
impl Unpin for ListNodesRequest
impl UnwindSafe for ListNodesRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more