pub struct ListConfigurationRevisionsRequest {
pub arn: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§arn: String <p>The Amazon Resource Name (ARN) that uniquely identifies an MSK configuration and all of its revisions.</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 ListConfigurationRevisionsRequest
impl Clone for ListConfigurationRevisionsRequest
Source§fn clone(&self) -> ListConfigurationRevisionsRequest
fn clone(&self) -> ListConfigurationRevisionsRequest
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 Default for ListConfigurationRevisionsRequest
impl Default for ListConfigurationRevisionsRequest
Source§fn default() -> ListConfigurationRevisionsRequest
fn default() -> ListConfigurationRevisionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListConfigurationRevisionsRequest
impl PartialEq for ListConfigurationRevisionsRequest
Source§fn eq(&self, other: &ListConfigurationRevisionsRequest) -> bool
fn eq(&self, other: &ListConfigurationRevisionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListConfigurationRevisionsRequest
Auto Trait Implementations§
impl Freeze for ListConfigurationRevisionsRequest
impl RefUnwindSafe for ListConfigurationRevisionsRequest
impl Send for ListConfigurationRevisionsRequest
impl Sync for ListConfigurationRevisionsRequest
impl Unpin for ListConfigurationRevisionsRequest
impl UnwindSafe for ListConfigurationRevisionsRequest
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