Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BrokerNodeGroupInfo

import type { BrokerNodeGroupInfo } from "https://aws-api.deno.dev/v0.4/services/kafka.ts?docs=full";

Describes the setup to be used for Apache Kafka broker nodes in the cluster.

interface BrokerNodeGroupInfo {
BrokerAZDistribution?: BrokerAZDistribution | null;
ClientSubnets: string[];
ConnectivityInfo?: ConnectivityInfo | null;
InstanceType: string;
SecurityGroups?: string[] | null;
StorageInfo?: StorageInfo | null;
}

§Properties

§
BrokerAZDistribution?: BrokerAZDistribution | null
[src]

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.

§
ClientSubnets: string[]
[src]

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.

§
ConnectivityInfo?: ConnectivityInfo | null
[src]

Information about the broker access configuration.

§
InstanceType: string
[src]

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.

§
SecurityGroups?: string[] | null
[src]

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.

§
StorageInfo?: StorageInfo | null
[src]

Contains information about storage volumes attached to MSK broker nodes.