pub struct DescribeBrokerEngineTypesResponse {
pub broker_engine_types: Option<Vec<BrokerEngineType>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§broker_engine_types: Option<Vec<BrokerEngineType>>
List of available engine types and versions.
max_results: Option<i64>
Required. The maximum number of engine types 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.
Trait Implementations§
Source§impl Clone for DescribeBrokerEngineTypesResponse
impl Clone for DescribeBrokerEngineTypesResponse
Source§fn clone(&self) -> DescribeBrokerEngineTypesResponse
fn clone(&self) -> DescribeBrokerEngineTypesResponse
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 DescribeBrokerEngineTypesResponse
impl Default for DescribeBrokerEngineTypesResponse
Source§fn default() -> DescribeBrokerEngineTypesResponse
fn default() -> DescribeBrokerEngineTypesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeBrokerEngineTypesResponse
impl<'de> Deserialize<'de> for DescribeBrokerEngineTypesResponse
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 DescribeBrokerEngineTypesResponse
impl PartialEq for DescribeBrokerEngineTypesResponse
Source§fn eq(&self, other: &DescribeBrokerEngineTypesResponse) -> bool
fn eq(&self, other: &DescribeBrokerEngineTypesResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeBrokerEngineTypesResponse
Auto Trait Implementations§
impl Freeze for DescribeBrokerEngineTypesResponse
impl RefUnwindSafe for DescribeBrokerEngineTypesResponse
impl Send for DescribeBrokerEngineTypesResponse
impl Sync for DescribeBrokerEngineTypesResponse
impl Unpin for DescribeBrokerEngineTypesResponse
impl UnwindSafe for DescribeBrokerEngineTypesResponse
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