[−][src]Struct rusoto_kafka::ClusterInfo
<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>
number_of_broker_nodes: Option<i64>
<p>The number of broker nodes in the cluster.</p>
state: Option<String>
<p>The state of the cluster. The possible states are CREATING, ACTIVE, and FAILED.</p>
<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 PartialEq<ClusterInfo> for ClusterInfo
[src]
fn eq(&self, other: &ClusterInfo) -> bool
[src]
fn ne(&self, other: &ClusterInfo) -> bool
[src]
impl Default for ClusterInfo
[src]
fn default() -> ClusterInfo
[src]
impl Clone for ClusterInfo
[src]
fn clone(&self) -> ClusterInfo
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ClusterInfo
[src]
impl<'de> Deserialize<'de> for ClusterInfo
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for ClusterInfo
impl Sync for ClusterInfo
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self