Struct aws_sdk_mq::types::builders::BrokerInstanceBuilder
source · #[non_exhaustive]pub struct BrokerInstanceBuilder { /* private fields */ }
Expand description
A builder for BrokerInstance
.
Implementations§
source§impl BrokerInstanceBuilder
impl BrokerInstanceBuilder
sourcepub fn console_url(self, input: impl Into<String>) -> Self
pub fn console_url(self, input: impl Into<String>) -> Self
The brokers web console URL.
sourcepub fn set_console_url(self, input: Option<String>) -> Self
pub fn set_console_url(self, input: Option<String>) -> Self
The brokers web console URL.
sourcepub fn get_console_url(&self) -> &Option<String>
pub fn get_console_url(&self) -> &Option<String>
The brokers web console URL.
sourcepub fn endpoints(self, input: impl Into<String>) -> Self
pub fn endpoints(self, input: impl Into<String>) -> Self
Appends an item to endpoints
.
To override the contents of this collection use set_endpoints
.
The broker's wire-level protocol endpoints.
sourcepub fn set_endpoints(self, input: Option<Vec<String>>) -> Self
pub fn set_endpoints(self, input: Option<Vec<String>>) -> Self
The broker's wire-level protocol endpoints.
sourcepub fn get_endpoints(&self) -> &Option<Vec<String>>
pub fn get_endpoints(&self) -> &Option<Vec<String>>
The broker's wire-level protocol endpoints.
sourcepub fn ip_address(self, input: impl Into<String>) -> Self
pub fn ip_address(self, input: impl Into<String>) -> Self
The IP address of the Elastic Network Interface (ENI) attached to the broker. Does not apply to RabbitMQ brokers.
sourcepub fn set_ip_address(self, input: Option<String>) -> Self
pub fn set_ip_address(self, input: Option<String>) -> Self
The IP address of the Elastic Network Interface (ENI) attached to the broker. Does not apply to RabbitMQ brokers.
sourcepub fn get_ip_address(&self) -> &Option<String>
pub fn get_ip_address(&self) -> &Option<String>
The IP address of the Elastic Network Interface (ENI) attached to the broker. Does not apply to RabbitMQ brokers.
sourcepub fn build(self) -> BrokerInstance
pub fn build(self) -> BrokerInstance
Consumes the builder and constructs a BrokerInstance
.
Trait Implementations§
source§impl Clone for BrokerInstanceBuilder
impl Clone for BrokerInstanceBuilder
source§fn clone(&self) -> BrokerInstanceBuilder
fn clone(&self) -> BrokerInstanceBuilder
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 BrokerInstanceBuilder
impl Debug for BrokerInstanceBuilder
source§impl Default for BrokerInstanceBuilder
impl Default for BrokerInstanceBuilder
source§fn default() -> BrokerInstanceBuilder
fn default() -> BrokerInstanceBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<BrokerInstanceBuilder> for BrokerInstanceBuilder
impl PartialEq<BrokerInstanceBuilder> for BrokerInstanceBuilder
source§fn eq(&self, other: &BrokerInstanceBuilder) -> bool
fn eq(&self, other: &BrokerInstanceBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BrokerInstanceBuilder
Auto Trait Implementations§
impl RefUnwindSafe for BrokerInstanceBuilder
impl Send for BrokerInstanceBuilder
impl Sync for BrokerInstanceBuilder
impl Unpin for BrokerInstanceBuilder
impl UnwindSafe for BrokerInstanceBuilder
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