#[non_exhaustive]pub struct UpdateBrokerOutputBuilder { /* private fields */ }Expand description
A builder for UpdateBrokerOutput.
Implementations§
source§impl UpdateBrokerOutputBuilder
impl UpdateBrokerOutputBuilder
sourcepub fn authentication_strategy(self, input: AuthenticationStrategy) -> Self
pub fn authentication_strategy(self, input: AuthenticationStrategy) -> Self
Optional. The authentication strategy used to secure the broker. The default is SIMPLE.
sourcepub fn set_authentication_strategy(
self,
input: Option<AuthenticationStrategy>
) -> Self
pub fn set_authentication_strategy( self, input: Option<AuthenticationStrategy> ) -> Self
Optional. The authentication strategy used to secure the broker. The default is SIMPLE.
sourcepub fn auto_minor_version_upgrade(self, input: bool) -> Self
pub fn auto_minor_version_upgrade(self, input: bool) -> Self
The new boolean value that specifies whether broker engines automatically upgrade to new minor versions as new versions are released and supported by Amazon MQ.
sourcepub fn set_auto_minor_version_upgrade(self, input: Option<bool>) -> Self
pub fn set_auto_minor_version_upgrade(self, input: Option<bool>) -> Self
The new boolean value that specifies whether broker engines automatically upgrade to new minor versions as new versions are released and supported by Amazon MQ.
sourcepub fn broker_id(self, input: impl Into<String>) -> Self
pub fn broker_id(self, input: impl Into<String>) -> Self
Required. The unique ID that Amazon MQ generates for the broker.
sourcepub fn set_broker_id(self, input: Option<String>) -> Self
pub fn set_broker_id(self, input: Option<String>) -> Self
Required. The unique ID that Amazon MQ generates for the broker.
sourcepub fn configuration(self, input: ConfigurationId) -> Self
pub fn configuration(self, input: ConfigurationId) -> Self
The ID of the updated configuration.
sourcepub fn set_configuration(self, input: Option<ConfigurationId>) -> Self
pub fn set_configuration(self, input: Option<ConfigurationId>) -> Self
The ID of the updated configuration.
sourcepub fn engine_version(self, input: impl Into<String>) -> Self
pub fn engine_version(self, input: impl Into<String>) -> Self
The broker engine version to upgrade to. For a list of supported engine versions, see Supported engines.
sourcepub fn set_engine_version(self, input: Option<String>) -> Self
pub fn set_engine_version(self, input: Option<String>) -> Self
The broker engine version to upgrade to. For a list of supported engine versions, see Supported engines.
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 host instance type to upgrade to. For a list of supported instance types, see Broker instance types.
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 host instance type to upgrade to. For a list of supported instance types, see Broker instance types.
sourcepub fn ldap_server_metadata(self, input: LdapServerMetadataOutput) -> Self
pub fn ldap_server_metadata(self, input: LdapServerMetadataOutput) -> Self
Optional. The metadata of the LDAP server used to authenticate and authorize connections to the broker. Does not apply to RabbitMQ brokers.
sourcepub fn set_ldap_server_metadata(
self,
input: Option<LdapServerMetadataOutput>
) -> Self
pub fn set_ldap_server_metadata( self, input: Option<LdapServerMetadataOutput> ) -> Self
Optional. The metadata of the LDAP server used to authenticate and authorize connections to the broker. Does not apply to RabbitMQ brokers.
sourcepub fn logs(self, input: Logs) -> Self
pub fn logs(self, input: Logs) -> Self
The list of information about logs to be enabled for the specified broker.
sourcepub fn set_logs(self, input: Option<Logs>) -> Self
pub fn set_logs(self, input: Option<Logs>) -> Self
The list of information about logs to be enabled for the specified broker.
sourcepub fn maintenance_window_start_time(self, input: WeeklyStartTime) -> Self
pub fn maintenance_window_start_time(self, input: WeeklyStartTime) -> Self
The parameters that determine the WeeklyStartTime.
sourcepub fn set_maintenance_window_start_time(
self,
input: Option<WeeklyStartTime>
) -> Self
pub fn set_maintenance_window_start_time( self, input: Option<WeeklyStartTime> ) -> Self
The parameters that determine the WeeklyStartTime.
sourcepub fn security_groups(self, input: impl Into<String>) -> Self
pub fn security_groups(self, input: impl Into<String>) -> Self
Appends an item to security_groups.
To override the contents of this collection use set_security_groups.
The list of security groups (1 minimum, 5 maximum) that authorizes connections to brokers.
sourcepub fn set_security_groups(self, input: Option<Vec<String>>) -> Self
pub fn set_security_groups(self, input: Option<Vec<String>>) -> Self
The list of security groups (1 minimum, 5 maximum) that authorizes connections to brokers.
sourcepub fn build(self) -> UpdateBrokerOutput
pub fn build(self) -> UpdateBrokerOutput
Consumes the builder and constructs a UpdateBrokerOutput.
Trait Implementations§
source§impl Clone for UpdateBrokerOutputBuilder
impl Clone for UpdateBrokerOutputBuilder
source§fn clone(&self) -> UpdateBrokerOutputBuilder
fn clone(&self) -> UpdateBrokerOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateBrokerOutputBuilder
impl Debug for UpdateBrokerOutputBuilder
source§impl Default for UpdateBrokerOutputBuilder
impl Default for UpdateBrokerOutputBuilder
source§fn default() -> UpdateBrokerOutputBuilder
fn default() -> UpdateBrokerOutputBuilder
source§impl PartialEq<UpdateBrokerOutputBuilder> for UpdateBrokerOutputBuilder
impl PartialEq<UpdateBrokerOutputBuilder> for UpdateBrokerOutputBuilder
source§fn eq(&self, other: &UpdateBrokerOutputBuilder) -> bool
fn eq(&self, other: &UpdateBrokerOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.