Struct aws_sdk_kafka::model::ClusterInfo
source · #[non_exhaustive]pub struct ClusterInfo { /* private fields */ }
Expand description
Returns information about a cluster.
Implementations§
source§impl ClusterInfo
impl ClusterInfo
sourcepub fn active_operation_arn(&self) -> Option<&str>
pub fn active_operation_arn(&self) -> Option<&str>
Arn of active cluster operation.
sourcepub fn broker_node_group_info(&self) -> Option<&BrokerNodeGroupInfo>
pub fn broker_node_group_info(&self) -> Option<&BrokerNodeGroupInfo>
Information about the broker nodes.
sourcepub fn client_authentication(&self) -> Option<&ClientAuthentication>
pub fn client_authentication(&self) -> Option<&ClientAuthentication>
Includes all client authentication information.
sourcepub fn cluster_arn(&self) -> Option<&str>
pub fn cluster_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
sourcepub fn cluster_name(&self) -> Option<&str>
pub fn cluster_name(&self) -> Option<&str>
The name of the cluster.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time when the cluster was created.
sourcepub fn current_broker_software_info(&self) -> Option<&BrokerSoftwareInfo>
pub fn current_broker_software_info(&self) -> Option<&BrokerSoftwareInfo>
Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.
sourcepub fn current_version(&self) -> Option<&str>
pub fn current_version(&self) -> Option<&str>
The current version of the MSK cluster.
sourcepub fn encryption_info(&self) -> Option<&EncryptionInfo>
pub fn encryption_info(&self) -> Option<&EncryptionInfo>
Includes all encryption-related information.
sourcepub fn enhanced_monitoring(&self) -> Option<&EnhancedMonitoring>
pub fn enhanced_monitoring(&self) -> Option<&EnhancedMonitoring>
Specifies which metrics are gathered for the MSK cluster. This property has the following possible values: DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION. For a list of the metrics associated with each of these levels of monitoring, see Monitoring.
sourcepub fn open_monitoring(&self) -> Option<&OpenMonitoring>
pub fn open_monitoring(&self) -> Option<&OpenMonitoring>
Settings for open monitoring using Prometheus.
pub fn logging_info(&self) -> Option<&LoggingInfo>
sourcepub fn number_of_broker_nodes(&self) -> i32
pub fn number_of_broker_nodes(&self) -> i32
The number of broker nodes in the cluster.
sourcepub fn state(&self) -> Option<&ClusterState>
pub fn state(&self) -> Option<&ClusterState>
The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
pub fn state_info(&self) -> Option<&StateInfo>
Tags attached to the cluster.
sourcepub fn zookeeper_connect_string(&self) -> Option<&str>
pub fn zookeeper_connect_string(&self) -> Option<&str>
The connection string to use to connect to the Apache ZooKeeper cluster.
sourcepub fn zookeeper_connect_string_tls(&self) -> Option<&str>
pub fn zookeeper_connect_string_tls(&self) -> Option<&str>
The connection string to use to connect to zookeeper cluster on Tls port.
sourcepub fn storage_mode(&self) -> Option<&StorageMode>
pub fn storage_mode(&self) -> Option<&StorageMode>
This controls storage mode for supported storage tiers.
source§impl ClusterInfo
impl ClusterInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ClusterInfo
.
Trait Implementations§
source§impl Clone for ClusterInfo
impl Clone for ClusterInfo
source§fn clone(&self) -> ClusterInfo
fn clone(&self) -> ClusterInfo
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ClusterInfo
impl Debug for ClusterInfo
source§impl PartialEq<ClusterInfo> for ClusterInfo
impl PartialEq<ClusterInfo> for ClusterInfo
source§fn eq(&self, other: &ClusterInfo) -> bool
fn eq(&self, other: &ClusterInfo) -> bool
self
and other
values to be equal, and is used
by ==
.