Struct aws_sdk_mq::types::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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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§
source§impl 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.
source§impl BrokerInstanceOption
impl BrokerInstanceOption
sourcepub fn builder() -> BrokerInstanceOptionBuilder
pub fn builder() -> BrokerInstanceOptionBuilder
Creates a new builder-style object to manufacture BrokerInstanceOption
.
Trait Implementations§
source§impl Clone for BrokerInstanceOption
impl Clone for BrokerInstanceOption
source§fn clone(&self) -> BrokerInstanceOption
fn clone(&self) -> BrokerInstanceOption
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 Debug for BrokerInstanceOption
impl Debug for BrokerInstanceOption
source§impl PartialEq<BrokerInstanceOption> for BrokerInstanceOption
impl PartialEq<BrokerInstanceOption> for BrokerInstanceOption
source§fn 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 ==
.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§
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