pub struct ListClusterOperationsRequest {
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 ListClusterOperationsRequest
impl Clone for ListClusterOperationsRequest
Source§fn clone(&self) -> ListClusterOperationsRequest
fn clone(&self) -> ListClusterOperationsRequest
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 ListClusterOperationsRequest
impl Debug for ListClusterOperationsRequest
Source§impl Default for ListClusterOperationsRequest
impl Default for ListClusterOperationsRequest
Source§fn default() -> ListClusterOperationsRequest
fn default() -> ListClusterOperationsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListClusterOperationsRequest
impl PartialEq for ListClusterOperationsRequest
Source§fn eq(&self, other: &ListClusterOperationsRequest) -> bool
fn eq(&self, other: &ListClusterOperationsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListClusterOperationsRequest
Auto Trait Implementations§
impl Freeze for ListClusterOperationsRequest
impl RefUnwindSafe for ListClusterOperationsRequest
impl Send for ListClusterOperationsRequest
impl Sync for ListClusterOperationsRequest
impl Unpin for ListClusterOperationsRequest
impl UnwindSafe for ListClusterOperationsRequest
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