Struct aws_sdk_mq::types::builders::BrokerInstanceOptionBuilder
source · #[non_exhaustive]pub struct BrokerInstanceOptionBuilder { /* private fields */ }Expand description
A builder for BrokerInstanceOption.
Implementations§
source§impl BrokerInstanceOptionBuilder
impl BrokerInstanceOptionBuilder
sourcepub fn availability_zones(self, input: AvailabilityZone) -> Self
pub fn availability_zones(self, input: AvailabilityZone) -> Self
Appends an item to availability_zones.
To override the contents of this collection use set_availability_zones.
The list of available az.
sourcepub fn set_availability_zones(
self,
input: Option<Vec<AvailabilityZone>>,
) -> Self
pub fn set_availability_zones( self, input: Option<Vec<AvailabilityZone>>, ) -> Self
The list of available az.
sourcepub fn get_availability_zones(&self) -> &Option<Vec<AvailabilityZone>>
pub fn get_availability_zones(&self) -> &Option<Vec<AvailabilityZone>>
The list of available az.
sourcepub fn engine_type(self, input: EngineType) -> Self
pub fn engine_type(self, input: EngineType) -> Self
The broker's engine type.
sourcepub fn set_engine_type(self, input: Option<EngineType>) -> Self
pub fn set_engine_type(self, input: Option<EngineType>) -> Self
The broker's engine type.
sourcepub fn get_engine_type(&self) -> &Option<EngineType>
pub fn get_engine_type(&self) -> &Option<EngineType>
The broker's engine type.
sourcepub fn host_instance_type(self, input: impl Into<String>) -> Self
pub fn host_instance_type(self, input: impl Into<String>) -> Self
The broker's instance type.
sourcepub fn set_host_instance_type(self, input: Option<String>) -> Self
pub fn set_host_instance_type(self, input: Option<String>) -> Self
The broker's instance type.
sourcepub fn get_host_instance_type(&self) -> &Option<String>
pub fn get_host_instance_type(&self) -> &Option<String>
The broker's instance type.
sourcepub fn storage_type(self, input: BrokerStorageType) -> Self
pub fn storage_type(self, input: BrokerStorageType) -> Self
The broker's storage type.
sourcepub fn set_storage_type(self, input: Option<BrokerStorageType>) -> Self
pub fn set_storage_type(self, input: Option<BrokerStorageType>) -> Self
The broker's storage type.
sourcepub fn get_storage_type(&self) -> &Option<BrokerStorageType>
pub fn get_storage_type(&self) -> &Option<BrokerStorageType>
The broker's storage type.
sourcepub fn supported_deployment_modes(self, input: DeploymentMode) -> Self
pub fn supported_deployment_modes(self, input: DeploymentMode) -> Self
Appends an item to supported_deployment_modes.
To override the contents of this collection use set_supported_deployment_modes.
The list of supported deployment modes.
sourcepub fn set_supported_deployment_modes(
self,
input: Option<Vec<DeploymentMode>>,
) -> Self
pub fn set_supported_deployment_modes( self, input: Option<Vec<DeploymentMode>>, ) -> Self
The list of supported deployment modes.
sourcepub fn get_supported_deployment_modes(&self) -> &Option<Vec<DeploymentMode>>
pub fn get_supported_deployment_modes(&self) -> &Option<Vec<DeploymentMode>>
The list of supported deployment modes.
sourcepub fn supported_engine_versions(self, input: impl Into<String>) -> Self
pub fn supported_engine_versions(self, input: impl Into<String>) -> Self
Appends an item to supported_engine_versions.
To override the contents of this collection use set_supported_engine_versions.
The list of supported engine versions.
sourcepub fn set_supported_engine_versions(self, input: Option<Vec<String>>) -> Self
pub fn set_supported_engine_versions(self, input: Option<Vec<String>>) -> Self
The list of supported engine versions.
sourcepub fn get_supported_engine_versions(&self) -> &Option<Vec<String>>
pub fn get_supported_engine_versions(&self) -> &Option<Vec<String>>
The list of supported engine versions.
sourcepub fn build(self) -> BrokerInstanceOption
pub fn build(self) -> BrokerInstanceOption
Consumes the builder and constructs a BrokerInstanceOption.
Trait Implementations§
source§impl Clone for BrokerInstanceOptionBuilder
impl Clone for BrokerInstanceOptionBuilder
source§fn clone(&self) -> BrokerInstanceOptionBuilder
fn clone(&self) -> BrokerInstanceOptionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for BrokerInstanceOptionBuilder
impl Debug for BrokerInstanceOptionBuilder
source§impl Default for BrokerInstanceOptionBuilder
impl Default for BrokerInstanceOptionBuilder
source§fn default() -> BrokerInstanceOptionBuilder
fn default() -> BrokerInstanceOptionBuilder
impl StructuralPartialEq for BrokerInstanceOptionBuilder
Auto Trait Implementations§
impl Freeze for BrokerInstanceOptionBuilder
impl RefUnwindSafe for BrokerInstanceOptionBuilder
impl Send for BrokerInstanceOptionBuilder
impl Sync for BrokerInstanceOptionBuilder
impl Unpin for BrokerInstanceOptionBuilder
impl UnwindSafe for BrokerInstanceOptionBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more