[][src]Struct rusoto_kafka::MutableClusterInfo

pub struct MutableClusterInfo {
    pub broker_ebs_volume_info: Option<Vec<BrokerEBSVolumeInfo>>,
    pub configuration_info: Option<ConfigurationInfo>,
    pub enhanced_monitoring: Option<String>,
    pub kafka_version: Option<String>,
    pub logging_info: Option<LoggingInfo>,
    pub number_of_broker_nodes: Option<i64>,
    pub open_monitoring: Option<OpenMonitoring>,
}
        <p>Information about cluster attributes that can be updated via update APIs.</p>

Fields

broker_ebs_volume_info: Option<Vec<BrokerEBSVolumeInfo>>
        <p>Specifies the size of the EBS volume and the ID of the associated broker.</p>
configuration_info: Option<ConfigurationInfo>
        <p>Information about the changes in the configuration of the brokers.</p>
enhanced_monitoring: Option<String>
        <p>Specifies which Apache Kafka metrics Amazon MSK gathers and sends to Amazon CloudWatch for this cluster.</p>
kafka_version: Option<String>
        <p>The Kafka version.</p>
logging_info: Option<LoggingInfo>number_of_broker_nodes: Option<i64>
        <p>The number of broker nodes in the cluster.</p>
open_monitoring: Option<OpenMonitoring>
        <p>The settings for open monitoring.</p>

Trait Implementations

impl Clone for MutableClusterInfo[src]

impl Debug for MutableClusterInfo[src]

impl Default for MutableClusterInfo[src]

impl<'de> Deserialize<'de> for MutableClusterInfo[src]

impl PartialEq<MutableClusterInfo> for MutableClusterInfo[src]

impl StructuralPartialEq for MutableClusterInfo[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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> 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.