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