[][src]Struct rusoto_mq::DescribeBrokerOutput

pub struct DescribeBrokerOutput {
    pub auto_minor_version_upgrade: Option<bool>,
    pub broker_arn: Option<String>,
    pub broker_id: Option<String>,
    pub broker_instances: Option<Vec<BrokerInstance>>,
    pub broker_name: Option<String>,
    pub broker_state: Option<String>,
    pub configurations: Option<Configurations>,
    pub created: Option<f64>,
    pub deployment_mode: Option<String>,
    pub engine_type: Option<String>,
    pub engine_version: Option<String>,
    pub host_instance_type: Option<String>,
    pub logs: Option<LogsSummary>,
    pub maintenance_window_start_time: Option<WeeklyStartTime>,
    pub publicly_accessible: Option<bool>,
    pub security_groups: Option<Vec<String>>,
    pub subnet_ids: Option<Vec<String>>,
    pub users: Option<Vec<UserSummary>>,
}

The version of the broker engine. Note: Currently, Amazon MQ supports only 5.15.0.

Fields

Required. 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.

The Amazon Resource Name (ARN) of the broker.

The unique ID that Amazon MQ generates for the broker.

A list of information about allocated brokers.

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.

The status of the broker.

The list of all revisions for the specified configuration.

The time when the broker was created.

Required. The deployment mode of the broker.

Required. The type of broker engine. Note: Currently, Amazon MQ supports only ACTIVEMQ.

The version of the broker engine. Note: Currently, Amazon MQ supports only 5.15.0.

The broker's instance type.

The list of information about logs currently enabled and pending to be deployed for the specified broker.

The parameters that determine the WeeklyStartTime.

Required. Enables connections from applications outside of the VPC that hosts the broker's subnets.

Required. The list of rules (1 minimum, 125 maximum) that authorize connections to brokers.

The list of groups (2 maximum) that define which subnets and IP ranges the broker can use from different Availability Zones. A SINGLEINSTANCE deployment requires one subnet (for example, the default subnet). An ACTIVESTANDBYMULTIAZ deployment requires two subnets.

The list of all ActiveMQ usernames for the specified broker.

Trait Implementations

impl Clone for DescribeBrokerOutput
[src]

Performs copy-assignment from source. Read more

impl Default for DescribeBrokerOutput
[src]

impl PartialEq<DescribeBrokerOutput> for DescribeBrokerOutput
[src]

impl Debug for DescribeBrokerOutput
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T