[][src]Struct rusoto_mq::UpdateBrokerRequest

pub struct UpdateBrokerRequest {
    pub auto_minor_version_upgrade: Option<bool>,
    pub broker_id: String,
    pub configuration: Option<ConfigurationId>,
    pub engine_version: Option<String>,
    pub host_instance_type: Option<String>,
    pub logs: Option<Logs>,
    pub security_groups: Option<Vec<String>>,
}

Updates the broker using the specified properties.

Fields

auto_minor_version_upgrade: Option<bool>

Enables automatic upgrades to new minor versions for brokers, as Apache releases the versions. The automatic upgrades occur during the maintenance window of the broker or after a manual broker reboot.

broker_id: String

The name of the broker. This value must be unique in your AWS account, 1-50 characters long, must contain only letters, numbers, dashes, and underscores, and must not contain whitespaces, brackets, wildcard characters, or special characters.

configuration: Option<ConfigurationId>

A list of information about the configuration.

engine_version: Option<String>

The version of the broker engine. For a list of supported engine versions, see https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/broker-engine.html

host_instance_type: Option<String>

The host instance type of the broker to upgrade to. For a list of supported instance types, see https://docs.aws.amazon.com/amazon-mq/latest/developer-guide//broker.html#broker-instance-types

logs: Option<Logs>

Enables Amazon CloudWatch logging for brokers.

security_groups: Option<Vec<String>>

The list of security groups (1 minimum, 5 maximum) that authorizes connections to brokers.

Trait Implementations

impl Clone for UpdateBrokerRequest[src]

impl Debug for UpdateBrokerRequest[src]

impl Default for UpdateBrokerRequest[src]

impl PartialEq<UpdateBrokerRequest> for UpdateBrokerRequest[src]

impl Serialize for UpdateBrokerRequest[src]

impl StructuralPartialEq for UpdateBrokerRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.