Struct aws_sdk_kafka::model::BrokerNodeGroupInfo
source · #[non_exhaustive]pub struct BrokerNodeGroupInfo { /* private fields */ }
Expand description
Describes the setup to be used for Apache Kafka broker nodes in the cluster.
Implementations§
source§impl BrokerNodeGroupInfo
impl BrokerNodeGroupInfo
sourcepub fn broker_az_distribution(&self) -> Option<&BrokerAzDistribution>
pub fn broker_az_distribution(&self) -> Option<&BrokerAzDistribution>
The distribution of broker nodes across Availability Zones. This is an optional parameter. If you don't specify it, Amazon MSK gives it the value DEFAULT. You can also explicitly set this parameter to the value DEFAULT. No other values are currently allowed.
Amazon MSK distributes the broker nodes evenly across the Availability Zones that correspond to the subnets you provide when you create the cluster.
sourcepub fn client_subnets(&self) -> Option<&[String]>
pub fn client_subnets(&self) -> Option<&[String]>
The list of subnets to connect to in the client virtual private cloud (VPC). AWS creates elastic network interfaces inside these subnets. Client applications use elastic network interfaces to produce and consume data. Client subnets can't occupy the Availability Zone with ID use use1-az3.
sourcepub fn instance_type(&self) -> Option<&str>
pub fn instance_type(&self) -> Option<&str>
The type of Amazon EC2 instances to use for Apache Kafka brokers. The following instance types are allowed: kafka.m5.large, kafka.m5.xlarge, kafka.m5.2xlarge, kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
sourcepub fn security_groups(&self) -> Option<&[String]>
pub fn security_groups(&self) -> Option<&[String]>
The AWS security groups to associate with the elastic network interfaces in order to specify who can connect to and communicate with the Amazon MSK cluster. If you don't specify a security group, Amazon MSK uses the default security group associated with the VPC.
sourcepub fn storage_info(&self) -> Option<&StorageInfo>
pub fn storage_info(&self) -> Option<&StorageInfo>
Contains information about storage volumes attached to MSK broker nodes.
sourcepub fn connectivity_info(&self) -> Option<&ConnectivityInfo>
pub fn connectivity_info(&self) -> Option<&ConnectivityInfo>
Information about the broker access configuration.
source§impl BrokerNodeGroupInfo
impl BrokerNodeGroupInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BrokerNodeGroupInfo
.
Trait Implementations§
source§impl Clone for BrokerNodeGroupInfo
impl Clone for BrokerNodeGroupInfo
source§fn clone(&self) -> BrokerNodeGroupInfo
fn clone(&self) -> BrokerNodeGroupInfo
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BrokerNodeGroupInfo
impl Debug for BrokerNodeGroupInfo
source§impl PartialEq<BrokerNodeGroupInfo> for BrokerNodeGroupInfo
impl PartialEq<BrokerNodeGroupInfo> for BrokerNodeGroupInfo
source§fn eq(&self, other: &BrokerNodeGroupInfo) -> bool
fn eq(&self, other: &BrokerNodeGroupInfo) -> bool
self
and other
values to be equal, and is used
by ==
.