| Column Name | Column Data Type |
cluster_name_filter Input Column
Specify a prefix of the name of the clusters that you want to list. The service lists all the clusters whose names start with this prefix. | VARCHAR |
_aws_profile Input Column
The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( "type" VARCHAR, "name" VARCHAR, "account_id" VARCHAR, "via_profile_name" VARCHAR, "assumed_role_arn" VARCHAR, "organization" STRUCT( "account_name" VARCHAR, "id" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[], "master_account" STRUCT( "id" VARCHAR, "email" VARCHAR ), "parents" STRUCT( "type" VARCHAR, "id" VARCHAR, "name" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[] )[] ) ) |
Show child fields- _aws_profile.account_id
The AWS account id
- _aws_profile.assumed_role_arn
The ARN of the assumed role
- _aws_profile.name
The unique name of the profile.
- _aws_profile.organization
Information about this profile's membership in the AWS organization. Show child fields- _aws_profile.organization.account_name
The name of account speciifed by the organization
- _aws_profile.organization.id
The organization id
- _aws_profile.organization.master_account
Show child fields- _aws_profile.organization.master_account.email
The organization master account email address
- _aws_profile.organization.master_account.id
The organization master account id
- _aws_profile.organization.parents[]
Show child fields- _aws_profile.organization.parents[].id
The id of the parent
- _aws_profile.organization.parents[].name
The name of the parent
- _aws_profile.organization.parents[].tags[]
Show child fields- _aws_profile.organization.parents[].tags[].key
- _aws_profile.organization.parents[].tags[].value
- _aws_profile.organization.parents[].type
The type of parent can be an organization unit or a root
- _aws_profile.organization.tags[]
Show child fields- _aws_profile.organization.tags[].key
- _aws_profile.organization.tags[].value
- _aws_profile.type
The type of profile, either 'credentials' or 'assumed_role'
- _aws_profile.via_profile_name
This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.
|
_aws_region Input Column
The AWS region to use. | VARCHAR |
active_operation_arn
Arn of active cluster operation. | VARCHAR |
broker_node_group_info
Information about the broker nodes. | STRUCT( "broker_az_distribution" VARCHAR, "client_subnets" VARCHAR[], "instance_type" VARCHAR, "security_groups" VARCHAR[], "storage_info" STRUCT( "ebs_storage_info" STRUCT( "provisioned_throughput" STRUCT( "enabled" BOOLEAN, "volume_throughput" BIGINT ), "volume_size" BIGINT ) ), "connectivity_info" STRUCT( "public_access" STRUCT( "type" VARCHAR ), "vpc_connectivity" STRUCT( "client_authentication" STRUCT( "sasl" STRUCT( "scram" STRUCT( "enabled" BOOLEAN ), "iam" STRUCT( "enabled" BOOLEAN ) ), "tls" STRUCT( "enabled" BOOLEAN ) ) ) ), "zone_ids" VARCHAR[] ) |
Show child fields- broker_node_group_info.broker_az_distribution
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.
- broker_node_group_info.client_subnets[]
- broker_node_group_info.connectivity_info
Information about the broker access configuration. Show child fields- broker_node_group_info.connectivity_info.public_access
Public access control for brokers. Show child fields- broker_node_group_info.connectivity_info.public_access.type
The value DISABLED indicates that public access is turned off. SERVICE_PROVIDED_EIPS indicates that public access is turned on.
- broker_node_group_info.connectivity_info.vpc_connectivity
VPC connectivity access control for brokers. Show child fields- broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication
Includes all client authentication information for VPC connectivity. Show child fields- broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl
SASL authentication type details for VPC connectivity. Show child fields- broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam
Details for SASL/IAM client authentication for VPC connectivity. Show child fields- broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled
SASL/IAM authentication is on or off for VPC connectivity.
- broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram
Details for SASL/SCRAM client authentication for VPC connectivity. Show child fields- broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled
SASL/SCRAM authentication is on or off for VPC connectivity.
- broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.tls
TLS authentication type details for VPC connectivity. Show child fields- broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled
TLS authentication is on or off for VPC connectivity.
- broker_node_group_info.instance_type
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.
- broker_node_group_info.security_groups[]
- broker_node_group_info.storage_info
Contains information about storage volumes attached to MSK broker nodes. Show child fields- broker_node_group_info.storage_info.ebs_storage_info
EBS volume information. Show child fields- broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput
EBS volume provisioned throughput information. Show child fields- broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.enabled
Provisioned throughput is enabled or not.
- broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.volume_throughput
Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.
- broker_node_group_info.storage_info.ebs_storage_info.volume_size
The size in GiB of the EBS volume for the data drive on each broker node.
- broker_node_group_info.zone_ids[]
|
client_authentication
Includes all client authentication information. | STRUCT( "sasl" STRUCT( "scram" STRUCT( "enabled" BOOLEAN ), "iam" STRUCT( "enabled" BOOLEAN ) ), "tls" STRUCT( "certificate_authority_arn_list" VARCHAR[], "enabled" BOOLEAN ), "unauthenticated" STRUCT( "enabled" BOOLEAN ) ) |
Show child fields- client_authentication.sasl
Details for ClientAuthentication using SASL. Show child fields- client_authentication.sasl.iam
Indicates whether IAM access control is enabled. Show child fields- client_authentication.sasl.iam.enabled
Indicates whether IAM access control is enabled.
- client_authentication.sasl.scram
Details for SASL/SCRAM client authentication. Show child fields- client_authentication.sasl.scram.enabled
SASL/SCRAM authentication is enabled or not.
- client_authentication.tls
Details for ClientAuthentication using TLS. Show child fields- client_authentication.tls.certificate_authority_arn_list[]
- client_authentication.tls.enabled
Specifies whether you want to turn on or turn off TLS authentication.
- client_authentication.unauthenticated
Contains information about unauthenticated traffic to the cluster. Show child fields- client_authentication.unauthenticated.enabled
Specifies whether you want to turn on or turn off unauthenticated traffic to your cluster.
|
cluster_arn
The Amazon Resource Name (ARN) that uniquely identifies the cluster. | VARCHAR |
cluster_name
The name of the cluster. | VARCHAR |
creation_time
The time when the cluster was created. | TIMESTAMP_S |
current_broker_software_info
Information about the version of software currently deployed on the Apache Kafka brokers in the cluster. | STRUCT( "configuration_arn" VARCHAR, "configuration_revision" BIGINT, "kafka_version" VARCHAR ) |
Show child fields- current_broker_software_info.configuration_arn
The Amazon Resource Name (ARN) of the configuration used for the cluster. This field isn't visible in this preview release.
- current_broker_software_info.configuration_revision
The revision of the configuration to use. This field isn't visible in this preview release.
- current_broker_software_info.kafka_version
The version of Apache Kafka.
|
current_version
The current version of the MSK cluster. | VARCHAR |
customer_action_status
Determines if there is an action required from the customer. | VARCHAR |
encryption_info
Includes all encryption-related information. | STRUCT( "encryption_at_rest" STRUCT( "data_volume_kms_key_id" VARCHAR ), "encryption_in_transit" STRUCT( "client_broker" VARCHAR, "in_cluster" BOOLEAN ) ) |
Show child fields- encryption_info.encryption_at_rest
The data-volume encryption details. Show child fields- encryption_info.encryption_at_rest.data_volume_kms_key_id
The ARN of the AWS KMS key for encrypting data at rest. If you don't specify a KMS key, MSK creates one for you and uses it.
- encryption_info.encryption_in_transit
The details for encryption in transit. Show child fields- encryption_info.encryption_in_transit.client_broker
Indicates the encryption setting for data in transit between clients and brokers. The following are the possible values. TLS means that client-broker communication is enabled with TLS only. TLS_PLAINTEXT means that client-broker communication is enabled for both TLS-encrypted, as well as plaintext data. PLAINTEXT means that client-broker communication is enabled in plaintext only. The default value is TLS_PLAINTEXT.
- encryption_info.encryption_in_transit.in_cluster
When set to true, it indicates that data communication among the broker nodes of the cluster is encrypted. When set to false, the communication happens in plaintext. The default value is true.
|
enhanced_monitoring
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. | VARCHAR |
logging_info
| STRUCT( "broker_logs" STRUCT( "cloud_watch_logs" STRUCT( "enabled" BOOLEAN, "log_group" VARCHAR ), "firehose" STRUCT( "delivery_stream" VARCHAR, "enabled" BOOLEAN ), "s3" STRUCT( "bucket" VARCHAR, "enabled" BOOLEAN, "prefix" VARCHAR ) ) ) |
Show child fields- logging_info.broker_logs
Show child fields- logging_info.broker_logs.cloud_watch_logs
Show child fields- logging_info.broker_logs.cloud_watch_logs.enabled
- logging_info.broker_logs.cloud_watch_logs.log_group
- logging_info.broker_logs.firehose
Show child fields- logging_info.broker_logs.firehose.delivery_stream
- logging_info.broker_logs.firehose.enabled
- logging_info.broker_logs.s3
Show child fields- logging_info.broker_logs.s3.bucket
- logging_info.broker_logs.s3.enabled
- logging_info.broker_logs.s3.prefix
|
number_of_broker_nodes
The number of broker nodes in the cluster. | BIGINT |
open_monitoring
Settings for open monitoring using Prometheus. | STRUCT( "prometheus" STRUCT( "jmx_exporter" STRUCT( "enabled_in_broker" BOOLEAN ), "node_exporter" STRUCT( "enabled_in_broker" BOOLEAN ) ) ) |
Show child fields- open_monitoring.prometheus
Prometheus settings. Show child fields- open_monitoring.prometheus.jmx_exporter
Indicates whether you want to turn on or turn off the JMX Exporter. Show child fields- open_monitoring.prometheus.jmx_exporter.enabled_in_broker
Indicates whether you want to turn on or turn off the JMX Exporter.
- open_monitoring.prometheus.node_exporter
Indicates whether you want to turn on or turn off the Node Exporter. Show child fields- open_monitoring.prometheus.node_exporter.enabled_in_broker
Indicates whether you want to turn on or turn off the Node Exporter.
|
state
The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING. | VARCHAR |
state_info
| STRUCT( "code" VARCHAR, "message" VARCHAR ) |
Show child fields- state_info.code
- state_info.message
|
storage_mode
This controls storage mode for supported storage tiers. | VARCHAR |
tags
Tags attached to the cluster. | MAP(VARCHAR, VARCHAR) |
zookeeper_connect_string
The connection string to use to connect to the Apache ZooKeeper cluster. | VARCHAR |
zookeeper_connect_string_tls
The connection string to use to connect to zookeeper cluster on Tls port. | VARCHAR |