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
sourceimpl 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.
sourceimpl BrokerNodeGroupInfo
impl BrokerNodeGroupInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BrokerNodeGroupInfo
.
Trait Implementations
sourceimpl Clone for BrokerNodeGroupInfo
impl Clone for BrokerNodeGroupInfo
sourcefn clone(&self) -> BrokerNodeGroupInfo
fn clone(&self) -> BrokerNodeGroupInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BrokerNodeGroupInfo
impl Debug for BrokerNodeGroupInfo
sourceimpl PartialEq<BrokerNodeGroupInfo> for BrokerNodeGroupInfo
impl PartialEq<BrokerNodeGroupInfo> for BrokerNodeGroupInfo
sourcefn eq(&self, other: &BrokerNodeGroupInfo) -> bool
fn eq(&self, other: &BrokerNodeGroupInfo) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &BrokerNodeGroupInfo) -> bool
fn ne(&self, other: &BrokerNodeGroupInfo) -> bool
This method tests for !=
.
impl StructuralPartialEq for BrokerNodeGroupInfo
Auto Trait Implementations
impl RefUnwindSafe for BrokerNodeGroupInfo
impl Send for BrokerNodeGroupInfo
impl Sync for BrokerNodeGroupInfo
impl Unpin for BrokerNodeGroupInfo
impl UnwindSafe for BrokerNodeGroupInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more