import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::MSK::Cluster */ export declare class Cluster extends pulumi.CustomResource { /** * Get an existing Cluster resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Cluster; /** * Returns true if the given object is an instance of Cluster. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Cluster; /** * The Amazon Resource Name (ARN) of the MSK cluster. */ readonly arn: pulumi.Output; /** * Information about the broker nodes in the cluster. */ readonly brokerNodeGroupInfo: pulumi.Output; /** * Includes all client authentication related information. */ readonly clientAuthentication: pulumi.Output; /** * The name of the cluster. */ readonly clusterName: pulumi.Output; /** * Represents the configuration that you want MSK to use for the cluster. */ readonly configurationInfo: pulumi.Output; /** * The current version of the MSK cluster */ readonly currentVersion: pulumi.Output; /** * Includes all encryption-related information. */ readonly encryptionInfo: pulumi.Output; /** * Specifies the level of monitoring for the MSK cluster. */ readonly enhancedMonitoring: pulumi.Output; /** * The version of Apache Kafka. You can use Amazon MSK to create clusters that use [supported Apache Kafka versions](https://docs.aws.amazon.com/msk/latest/developerguide/supported-kafka-versions.html) . */ readonly kafkaVersion: pulumi.Output; /** * Logging info details for the cluster. */ readonly loggingInfo: pulumi.Output; /** * The number of broker nodes in the cluster. */ readonly numberOfBrokerNodes: pulumi.Output; /** * The settings for open monitoring. */ readonly openMonitoring: pulumi.Output; readonly rebalancing: pulumi.Output; /** * This controls storage mode for supported storage tiers. */ readonly storageMode: pulumi.Output; /** * A key-value pair to associate with a resource. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a Cluster resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ClusterArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Cluster resource. */ export interface ClusterArgs { /** * Information about the broker nodes in the cluster. */ brokerNodeGroupInfo: pulumi.Input; /** * Includes all client authentication related information. */ clientAuthentication?: pulumi.Input; /** * The name of the cluster. */ clusterName?: pulumi.Input; /** * Represents the configuration that you want MSK to use for the cluster. */ configurationInfo?: pulumi.Input; /** * Includes all encryption-related information. */ encryptionInfo?: pulumi.Input; /** * Specifies the level of monitoring for the MSK cluster. */ enhancedMonitoring?: pulumi.Input; /** * The version of Apache Kafka. You can use Amazon MSK to create clusters that use [supported Apache Kafka versions](https://docs.aws.amazon.com/msk/latest/developerguide/supported-kafka-versions.html) . */ kafkaVersion: pulumi.Input; /** * Logging info details for the cluster. */ loggingInfo?: pulumi.Input; /** * The number of broker nodes in the cluster. */ numberOfBrokerNodes: pulumi.Input; /** * The settings for open monitoring. */ openMonitoring?: pulumi.Input; rebalancing?: pulumi.Input; /** * This controls storage mode for supported storage tiers. */ storageMode?: pulumi.Input; /** * A key-value pair to associate with a resource. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }