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