pub struct ListConfigurationRevisionsRequest {
pub configuration_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§configuration_id: String
The unique ID that Amazon MQ generates for the configuration.
max_results: Option<i64>
The maximum number of configurations that Amazon MQ can return per page (20 by default). This value must be an integer from 5 to 100.
next_token: Option<String>
The token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.
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