[][src]Struct rusoto_kafka::ClusterInfo

pub struct ClusterInfo {
    pub active_operation_arn: Option<String>,
    pub broker_node_group_info: Option<BrokerNodeGroupInfo>,
    pub client_authentication: Option<ClientAuthentication>,
    pub cluster_arn: Option<String>,
    pub cluster_name: Option<String>,
    pub creation_time: Option<f64>,
    pub current_broker_software_info: Option<BrokerSoftwareInfo>,
    pub current_version: Option<String>,
    pub encryption_info: Option<EncryptionInfo>,
    pub enhanced_monitoring: Option<String>,
    pub logging_info: Option<LoggingInfo>,
    pub number_of_broker_nodes: Option<i64>,
    pub open_monitoring: Option<OpenMonitoring>,
    pub state: Option<String>,
    pub state_info: Option<StateInfo>,
    pub tags: Option<HashMap<String, String>>,
    pub zookeeper_connect_string: Option<String>,
}
        <p>Returns information about a cluster.</p>

Fields

active_operation_arn: Option<String>
        <p>Arn of active cluster operation.</p>
broker_node_group_info: Option<BrokerNodeGroupInfo>
        <p>Information about the broker nodes.</p>
client_authentication: Option<ClientAuthentication>
        <p>Includes all client authentication information.</p>
cluster_arn: Option<String>
        <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
cluster_name: Option<String>
        <p>The name of the cluster.</p>
creation_time: Option<f64>
        <p>The time when the cluster was created.</p>
current_broker_software_info: Option<BrokerSoftwareInfo>
        <p>Information about the version of software currently deployed on the Kafka brokers in the cluster.</p>
current_version: Option<String>
        <p>The current version of the MSK cluster.</p>
encryption_info: Option<EncryptionInfo>
        <p>Includes all encryption-related information.</p>
enhanced_monitoring: Option<String>
        <p>Specifies which metrics are gathered for the MSK cluster. This property has three possible values: DEFAULT, PER_BROKER, and PER_TOPIC_PER_BROKER. For a list of the metrics associated with each of these three levels of monitoring, see <a href="https://docs.aws.amazon.com/msk/latest/developerguide/monitoring.html">Monitoring</a>.</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>Settings for open monitoring using Prometheus.</p>
state: Option<String>
        <p>The state of the cluster. The possible states are CREATING, ACTIVE, and FAILED.</p>
state_info: Option<StateInfo>tags: Option<HashMap<String, String>>
        <p>Tags attached to the cluster.</p>
zookeeper_connect_string: Option<String>
        <p>The connection string to use to connect to the Apache ZooKeeper cluster.</p>

Trait Implementations

impl Clone for ClusterInfo[src]

impl Debug for ClusterInfo[src]

impl Default for ClusterInfo[src]

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

impl PartialEq<ClusterInfo> for ClusterInfo[src]

impl StructuralPartialEq for ClusterInfo[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> 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.