Struct aws_sdk_mq::model::BrokerInstanceOption
source · [−]#[non_exhaustive]pub struct BrokerInstanceOption {
pub availability_zones: Option<Vec<AvailabilityZone>>,
pub engine_type: Option<EngineType>,
pub host_instance_type: Option<String>,
pub storage_type: Option<BrokerStorageType>,
pub supported_deployment_modes: Option<Vec<DeploymentMode>>,
pub supported_engine_versions: Option<Vec<String>>,
}
Expand description
Option for host instance type.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.availability_zones: Option<Vec<AvailabilityZone>>
The list of available az.
engine_type: Option<EngineType>
The broker's engine type.
host_instance_type: Option<String>
The broker's instance type.
storage_type: Option<BrokerStorageType>
The broker's storage type.
supported_deployment_modes: Option<Vec<DeploymentMode>>
The list of supported deployment modes.
supported_engine_versions: Option<Vec<String>>
The list of supported engine versions.
Implementations
sourceimpl BrokerInstanceOption
impl BrokerInstanceOption
sourcepub fn availability_zones(&self) -> Option<&[AvailabilityZone]>
pub fn availability_zones(&self) -> Option<&[AvailabilityZone]>
The list of available az.
sourcepub fn engine_type(&self) -> Option<&EngineType>
pub fn engine_type(&self) -> Option<&EngineType>
The broker's engine type.
sourcepub fn host_instance_type(&self) -> Option<&str>
pub fn host_instance_type(&self) -> Option<&str>
The broker's instance type.
sourcepub fn storage_type(&self) -> Option<&BrokerStorageType>
pub fn storage_type(&self) -> Option<&BrokerStorageType>
The broker's storage type.
sourcepub fn supported_deployment_modes(&self) -> Option<&[DeploymentMode]>
pub fn supported_deployment_modes(&self) -> Option<&[DeploymentMode]>
The list of supported deployment modes.
sourcepub fn supported_engine_versions(&self) -> Option<&[String]>
pub fn supported_engine_versions(&self) -> Option<&[String]>
The list of supported engine versions.
sourceimpl BrokerInstanceOption
impl BrokerInstanceOption
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BrokerInstanceOption
Trait Implementations
sourceimpl Clone for BrokerInstanceOption
impl Clone for BrokerInstanceOption
sourcefn clone(&self) -> BrokerInstanceOption
fn clone(&self) -> BrokerInstanceOption
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BrokerInstanceOption
impl Debug for BrokerInstanceOption
sourceimpl PartialEq<BrokerInstanceOption> for BrokerInstanceOption
impl PartialEq<BrokerInstanceOption> for BrokerInstanceOption
sourcefn eq(&self, other: &BrokerInstanceOption) -> bool
fn eq(&self, other: &BrokerInstanceOption) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &BrokerInstanceOption) -> bool
fn ne(&self, other: &BrokerInstanceOption) -> bool
This method tests for !=
.
impl StructuralPartialEq for BrokerInstanceOption
Auto Trait Implementations
impl RefUnwindSafe for BrokerInstanceOption
impl Send for BrokerInstanceOption
impl Sync for BrokerInstanceOption
impl Unpin for BrokerInstanceOption
impl UnwindSafe for BrokerInstanceOption
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more