pub struct ListConfigurationRevisionsResponse {
pub configuration_id: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub revisions: Option<Vec<ConfigurationRevision>>,
}
Fields§
§configuration_id: Option<String>
The unique ID that Amazon MQ generates for the configuration.
max_results: Option<i64>
The maximum number of configuration revisions that can be returned 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.
revisions: Option<Vec<ConfigurationRevision>>
The list of all revisions for the specified configuration.
Trait Implementations§
Source§impl Clone for ListConfigurationRevisionsResponse
impl Clone for ListConfigurationRevisionsResponse
Source§fn clone(&self) -> ListConfigurationRevisionsResponse
fn clone(&self) -> ListConfigurationRevisionsResponse
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 ListConfigurationRevisionsResponse
impl Default for ListConfigurationRevisionsResponse
Source§fn default() -> ListConfigurationRevisionsResponse
fn default() -> ListConfigurationRevisionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListConfigurationRevisionsResponse
impl<'de> Deserialize<'de> for ListConfigurationRevisionsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListConfigurationRevisionsResponse
impl PartialEq for ListConfigurationRevisionsResponse
Source§fn eq(&self, other: &ListConfigurationRevisionsResponse) -> bool
fn eq(&self, other: &ListConfigurationRevisionsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListConfigurationRevisionsResponse
Auto Trait Implementations§
impl Freeze for ListConfigurationRevisionsResponse
impl RefUnwindSafe for ListConfigurationRevisionsResponse
impl Send for ListConfigurationRevisionsResponse
impl Sync for ListConfigurationRevisionsResponse
impl Unpin for ListConfigurationRevisionsResponse
impl UnwindSafe for ListConfigurationRevisionsResponse
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