pub struct ListConfigurationsResponse {
pub configurations: Option<Vec<Configuration>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§configurations: Option<Vec<Configuration>>
The list of all revisions for the specified 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 ListConfigurationsResponse
impl Clone for ListConfigurationsResponse
Source§fn clone(&self) -> ListConfigurationsResponse
fn clone(&self) -> ListConfigurationsResponse
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 ListConfigurationsResponse
impl Debug for ListConfigurationsResponse
Source§impl Default for ListConfigurationsResponse
impl Default for ListConfigurationsResponse
Source§fn default() -> ListConfigurationsResponse
fn default() -> ListConfigurationsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListConfigurationsResponse
impl<'de> Deserialize<'de> for ListConfigurationsResponse
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
impl StructuralPartialEq for ListConfigurationsResponse
Auto Trait Implementations§
impl Freeze for ListConfigurationsResponse
impl RefUnwindSafe for ListConfigurationsResponse
impl Send for ListConfigurationsResponse
impl Sync for ListConfigurationsResponse
impl Unpin for ListConfigurationsResponse
impl UnwindSafe for ListConfigurationsResponse
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