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